From 3238fdb84c4f8544ca645a3f97c867fe2ce4b32e Mon Sep 17 00:00:00 2001 From: Kyri Petrou Date: Tue, 5 Nov 2024 13:12:38 +0530 Subject: [PATCH] Define versionScheme --- build.sbt | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/build.sbt b/build.sbt index fabc2d8b9..4495c314b 100644 --- a/build.sbt +++ b/build.sbt @@ -6,10 +6,10 @@ Global / onChangedBuildSource := ReloadOnSourceChanges inThisBuild( List( - organization := "dev.zio", - homepage := Some(url("https://zio.dev/zio-config/")), - licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")), - developers := List( + organization := "dev.zio", + homepage := Some(url("https://zio.dev/zio-config/")), + licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")), + developers := List( Developer( "afsalthaj", "Afsal Thaj", @@ -22,7 +22,8 @@ inThisBuild( "john@degoes.net", url("http://degoes.net") ) - ) + ), + versionScheme := Some("early-semver") ) )