changelog tag overwritten
See original GitHub issueHi, I add this CHANGELOG.md:
0.1.0 (2019-07-16)
Features
0.0.0 (2019-07-10)
My git repository has the tag 0.0.0
and v.0.1.0
.
When I run :
npm --no-git-tag-version version 0.1.1
# "changelog": "conventional-changelog -i CHANGELOG.md -s -p angular -r 0",
npm run changelog
I get this:
0.1.1 (2019-07-17)
Features
0.0.0 (2019-07-10)
From my understanding, it should be:
0.1.1 (2019-07-17)
0.1.0 (2019-07-16)
Features
0.0.0 (2019-07-10)
What is wrong ?
Issue Analytics
- State:
- Created 4 years ago
- Reactions:3
- Comments:10 (1 by maintainers)
Top Results From Across the Web
Git changelog: how to get all changes up to a specific tag?
Is there an easy way or command to get all git commits up to a specific tag to generate an automatic changelog ......
Read more >Tagging overwrites last tag - General Discussion - Liquibase
I've generated a baseline changelog to bootstrap a new DB and have applied it to a new mysql instance, then used the tag...
Read more >tags overwritten · Issue #1814 · phpipam/phpipam - GitHub
Hi, i use several tags to mark my IPs, for example I have blocked, virtual, teaming and others as tags. I added the...
Read more >Git Tag Operations - Git Delete Tag & Git Update Tag - Tools QA
Similar to this, sometimes, we are required to update the tags in Git. Updating a tag will take your tag to another commit....
Read more >git-tag Documentation - Git
If you have imported some changes from another VCS and would like to add tags for major releases of your work, it is...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I fixed this. My case, the git tags I created are not attached to the branch.
@Lirianna Thanks for the answer. I added more context about git tags and the expected output in my issue.