You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now when I create a release after a pre-release, the release changelo only contains changes since the pre-release and the compare link in changelog points to diff between pre-release and this release.
I'd like to make releases always compare against last full release rather than prerelease.
Let's say I have versions 1.0.0, 1.1.0-alpha.1, 1.1.0-alpha.2 and 1.1.0.
I want the changelog to show:
for 1.1.0-alpha.1 - changes since 1.0.0 (as it works currently)
for 1.1.0-alpha.2 - changes since 1.1.0-alpha.1 (as it works currently)
for 1.1.0 - changes since 1.0.0 (including all changes from prereleases) and the compare link pointing to /compare/v1.0.0...v1.1.0
Is this possible now?
The text was updated successfully, but these errors were encountered:
I don't think this is currently possible without mucking about with multiple sets of tags (or renaming tags out of the way, which I don't think is a good idea).
If I had this use case once or twice, I would just delete the pre-release tags locally and then run commit-and-tag-version. If it was often, something more automated might be better
The rationale for which changes to accept is here - I feel like it fits, although I'm not sure that it would be easy to come up with a general case that doesn't make assumptions about how / when the tool is invoked. What do you think?
Right now when I create a release after a pre-release, the release changelo only contains changes since the pre-release and the compare link in changelog points to diff between pre-release and this release.
I'd like to make releases always compare against last full release rather than prerelease.
Let's say I have versions
1.0.0
,1.1.0-alpha.1
,1.1.0-alpha.2
and1.1.0
.I want the changelog to show:
1.1.0-alpha.1
- changes since1.0.0
(as it works currently)1.1.0-alpha.2
- changes since1.1.0-alpha.1
(as it works currently)1.1.0
- changes since1.0.0
(including all changes from prereleases) and the compare link pointing to/compare/v1.0.0...v1.1.0
Is this possible now?
The text was updated successfully, but these errors were encountered: