Replies: 2 comments 4 replies
-
|
If you are concerned about dependencies, there is a GitHub Action you can use. |
Beta Was this translation helpful? Give feedback.
1 reply
-
|
Would it be reasonable to have some option, say $ bump-my-version show-bump
0.7 ── bump ─┬─ major ─ 1.0
╰─ minor ─ 0.8
$ bump-my-version show-bump --print-only minor
0.8? My use case is simpler than the OP: I simply like to get the next version and show a preview of the changelog that would be generated by something like towncrier build --draft --version 0.8 . |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
This is a nice command line tool, but it's not quite suitable for CI as it has too many dependencies by default and to too many things.
I'd like to calculate new version and run
gh release(or similar) to make the rest. For this function I don't need very goodcliand configuration file support. This also will automatically support any other SCM.Changing files is also done on release CI and/or tooling to build app, so I don't need this either.
Is there's any option to have such minimal CLI for CI?
PS: If anybody knows alternatives, I considering them as well.
Beta Was this translation helpful? Give feedback.
All reactions