Open
Description
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 since1.0.0
(as it works currently) - for
1.1.0-alpha.2
- changes since1.1.0-alpha.1
(as it works currently) - for
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?