bump2version
bump2version copied to clipboard
Version-bump your software with a single command
If you use the `--new-version` flag with the current version as an argument, bumpversion corrupts the files :(. I ended up with: ``` version = version = version = 0.2.0...
Looking at the source I don't think this is possible, but I'll ask anyway. Is it possible to make trigger of search-and-replace conditional on the part being bumped? For example,...
In our build environment for openSUSE packages, I get this test fail: ``` [ 7s] ______________________________ test_usage_string _______________________________ [ 7s] [ 7s] tmpdir = local('/tmp/pytest-of-abuild/pytest-2/test_usage_string0') [ 7s] capsys = [...
If a typo or other mistake is made on the command line and the user tries to run `bump2version` with an invalid `part` (e.g., `bump2version pathc`), the program will not...
# Description The `--independent` flag is in project documentation so I'd expect to be able to use it in a tagged release. However, the latest tagged release is older than...
Has there been any thought as to how bump2version can be used to change the version of an Android project? Typically an Android project has a `/app/build.gradle` file that has...
Hello, thank you for this nice project! I haven't found an issue that describes that problem I have encountered. Essentially it seems that when I run bump2version with a specific...
I'm trying to update the version in the change log with this configuration: ``` [bumpversion:file:HISTORY.rst] search = in_progress_version replace = in_progress_version\n-------------------\ncoming soon\n\n{new_version} ``` How can I make bumpversion convert the...
You can't just run `bump2version --new-version 0.1.7` ``` Reading config file setup.cfg: [bumpversion] current_version = 0.1.6 commit = True tag = True [bumpversion:file:deeppath/__init__.py] search = __version__ = "{current_version}" replace =...
There's currently no support for creating annotated tags in Git without specifying the message. The `git tag -a` option will create an annotated tag and open the editor to write...