-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
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
Changelog generation should be able to generate last change untagged #17
Comments
I could add the result of last tag: 3.3.0 release notes # release notes
$ git sv rn
## v3.4.0 (2021-04-10)
### Features
- add feature (2339fa3) changelog $ git sv cgl
# Changelog
## v3.3.0 (2021-04-10)
### Features
- update something (c711a8d)
--- changelog + next release $ git sv cgl --add-next-version
# Changelog
## v3.4.0 (2021-04-10)
### Features
- add feature (2339fa3)
---
## v3.3.0 (2021-04-10)
### Features
- update something (c711a8d)
---
But if the branch has no commits since last tag or only commits that doesn't bump the version, nothing will be added. Is this ok? |
what happened with your repository? there is only one commit |
Seems good yes :-) About my repository i think i forget to push, but now i pushed |
Feature: add next version on changelog
flag |
Hello,
Sometimes you want to generate the whole changelog until the last commit even if the commit is untagged.
So you can take this changelog add it to your repo, commit it, and tag the commit with the proper tag.
Exemple
https://github.com/syrm/test
Generate changelog produce right now :
I think it would be cool if you add an option to be able to generate the changelog of the last commit too and produce something like this :
The text was updated successfully, but these errors were encountered: