diff --git a/README.md b/README.md index f7d4ee1..16eeff9 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Powerful configuration management for Scala (JSON, properties, command-line arguments, and environment variables) # Latest version -3.4.7 +3.4.8 # Justification @@ -44,8 +44,8 @@ and overriding configuration in your application. Profig is published to Sonatype OSS and synchronized to Maven Central supporting JVM and Scala.js on 2.11, 2.12, 2.13, and Scala 3.x: ``` -libraryDependencies += "com.outr" %% "profig" % "3.4.7" // Scala -libraryDependencies += "com.outr" %%% "profig" % "3.4.7" // Scala.js / Cross-Build +libraryDependencies += "com.outr" %% "profig" % "3.4.8" // Scala +libraryDependencies += "com.outr" %%% "profig" % "3.4.8" // Scala.js / Cross-Build ``` ## Getting Started @@ -108,7 +108,7 @@ wanted to access the system property "java.version" we can easily do so: ```scala val javaVersion = Profig("java.version").as[String] -// javaVersion: String = "1.8.0_352" +// javaVersion: String = "1.8.0_345" ``` You can also load from a higher level as a case class to get more information. For example: @@ -130,7 +130,7 @@ object Specification { val info = Profig("java").as[JVMInfo] // info: JVMInfo = JVMInfo( -// version = "1.8.0_352", +// version = "1.8.0_345", // specification = Specification( // vendor = "Oracle Corporation", // name = "Java Platform API Specification", diff --git a/build.sbt b/build.sbt index f9ae934..1437253 100644 --- a/build.sbt +++ b/build.sbt @@ -8,7 +8,7 @@ val scala2 = List(scala213) val allScalaVersions = scala2 ::: scala3 ThisBuild / organization := "com.outr" -ThisBuild / version := "3.4.7" +ThisBuild / version := "3.4.8" ThisBuild / scalaVersion := scala213 ThisBuild / scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature")