We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
An Elixir application has the version in configuration file in the following format:
... [ ... version: "1.0.0", ... ] ...
I use the following .bumpversion.cfg:
.bumpversion.cfg
[bumpversion] current_version = 1.0.0 [bumpversion:file:mix.exs] search = version: "{current_version}" replace = version: "{new_version}"
The result is:
... [ ... version: "version: "1.0.0"", ... ] ...
The expleted result is:
... [ ... version: "1.0.1"", ... ] ...
I have tried to escape it with \: but it does not work either.
\:
The text was updated successfully, but these errors were encountered:
This issue has been solved by bump-my-version thanks to its transition to TOML-based configuration files.
bump-my-version
Sorry, something went wrong.
No branches or pull requests
An Elixir application has the version in configuration file in the following format:
I use the following
.bumpversion.cfg
:The result is:
The expleted result is:
The result is:
I have tried to escape it with
\:
but it does not work either.The text was updated successfully, but these errors were encountered: