diff --git a/README.md b/README.md index 785ee9b..ec867d2 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,6 @@ myValues.substitute(toBeReplaced) // Hello, John! You are 42 years old. Add the library as a dependency: ```scala -libraryDependencies += "io.github.matejcerny" %% "replacements" % "0.2.0" +libraryDependencies += "io.github.matejcerny" %% "replacements" % "0.2.1" ``` diff --git a/build.conf b/build.conf index 086843e..369d97a 100644 --- a/build.conf +++ b/build.conf @@ -1,6 +1,17 @@ name = "replacements" organization = "io.github.matejcerny" scalaVersion = "3.3.7" +homepage = "https://github.com/matejcerny/sbt-config" +licenses = ["Apache2"] +versionScheme = "early-semver" +developers = [ + { + id = "matejcerny" + name = "Matej Cerny" + email = "cerny.matej@gmail.com" + url = "https://matejcerny.cz/en/" + } +] scalacOptions = [ "-explain", diff --git a/build.sbt b/build.sbt index 0de504d..e69de29 100644 --- a/build.sbt +++ b/build.sbt @@ -1,12 +0,0 @@ -// Publishing settings for sbt-ci-release -ThisBuild / homepage := Some(url("https://github.com/matejcerny/sbt-config")) -ThisBuild / licenses := Seq(License.Apache2) -ThisBuild / versionScheme := Some("early-semver") -ThisBuild / developers := List( - Developer( - id = "matejcerny", - name = "Matej Cerny", - email = "cerny.matej@gmail.com", - url = url("https://matejcerny.cz/en/") - ) -) diff --git a/project/plugins.sbt b/project/plugins.sbt index c623372..93e5dd0 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("io.github.matejcerny" % "sbt-config" % "0.1.0") +addSbtPlugin("io.github.matejcerny" % "sbt-config" % "0.2.1") addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.11.2") addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.12")