From 55c7bcac64d04f324136607f853f9f34451f08b8 Mon Sep 17 00:00:00 2001 From: Brian Holt Date: Tue, 8 Nov 2022 12:19:29 -0600 Subject: [PATCH] add pvp versionScheme to project POMs PVP is described as a version scheme in which "X.Y are treated as [the] major version," which I think accurately describes the version scheme of this library. (More information about versionScheme is available at https://www.scala-sbt.org/1.x/docs/Publishing.html#Version+scheme) --- build.sbt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.sbt b/build.sbt index e483451629..2f204e7344 100644 --- a/build.sbt +++ b/build.sbt @@ -254,6 +254,8 @@ def scalatestScalacheckVersionedDep(scalaVersion: String) = { } } +ThisBuild / versionScheme := Some("pvp") + lazy val util = Project( id = "util", base = file(".")