Skip to content

1.4.0

Latest
Compare
Choose a tag to compare
@eed3si9n eed3si9n released this 23 Jan 01:19
· 17 commits to master since this release
v1.4.0
3e9020f

Breaking Change: Prerelease version increments

Prior to sbt-release 1.4.0, if a prerelease version (for example 1.0.0-RC1) is incremented, the prerelease part RC1 is dropped, so 1.0.0-RC1 was incremented to 1.0.0. By default, sbt-release 1.4.0 increments prerelease versions by default, if it ends in a number. In other words, 1.0.0-RC1 is incremented to 1.0.0-RC2.

To restore the previous behavior, you can set the following setting:

releaseVersionBump := sbtrelease.Version.Bump.NextStable

This was contributed by @Andrapyre in #397

Updates

Full Changelog: v1.3.0...v1.4.0