Skip to content
This repository was archived by the owner on Aug 18, 2020. It is now read-only.

Commit 0858434

Browse files
committed
Updated versioning to use nearly unified semantic versioning.
1 parent ae808ed commit 0858434

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

build.sbt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ lazy val requirementsGenerator = TaskKey[Unit]("requirementsGenerator")
66
// Convention: majorVersion++ on api signature update (else: minorVersion ++)
77
val majorVersion = 3
88
val minorVersion = 0
9-
version := s"$majorVersion.$minorVersion"
9+
val patchVersion = 0
10+
// The patch version is ignored and only used for the package version
11+
version := s"$majorVersion.$minorVersion.$patchVersion"
1012

1113
// The API doesn't use scala. We can safely drop the scala version suffix from the jar and
1214
// drop the dependency on the scala library.

0 commit comments

Comments
 (0)