From 5d8af237a25248bf2e44a84cb8fc57f372b6924f Mon Sep 17 00:00:00 2001 From: Matt Hicks Date: Tue, 17 Dec 2024 11:55:05 -0600 Subject: [PATCH] Release 3.4.17 --- README.md | 12 ++++++------ build.sbt | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 8941ee8..308a7e4 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.16 +3.4.17 # 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.16" // Scala -libraryDependencies += "com.outr" %%% "profig" % "3.4.16" // Scala.js / Cross-Build +libraryDependencies += "com.outr" %% "profig" % "3.4.17" // Scala +libraryDependencies += "com.outr" %%% "profig" % "3.4.17" // Scala.js / Cross-Build ``` ## Getting Started @@ -154,7 +154,7 @@ wanted to access the system property "java.version" we can easily do so: ```scala val javaVersion = Profig("java.version").as[String] -// javaVersion: String = "22.0.2" +// javaVersion: String = "23.0.1" ``` You can also load from a higher level as a case class to get more information. For example: @@ -176,11 +176,11 @@ object Specification { val info = Profig("java").as[JVMInfo] // info: JVMInfo = JVMInfo( -// version = "22.0.2", +// version = "23.0.1", // specification = Specification( // vendor = "Oracle Corporation", // name = "Java Platform API Specification", -// version = "22" +// version = "23" // ) // ) ``` diff --git a/build.sbt b/build.sbt index 3b271f7..9618d9b 100644 --- a/build.sbt +++ b/build.sbt @@ -10,7 +10,7 @@ val scala2 = List(scala213) val allScalaVersions = scala2 ::: scala3 ThisBuild / organization := "com.outr" -ThisBuild / version := "3.4.16" +ThisBuild / version := "3.4.17" ThisBuild / scalaVersion := scala213 ThisBuild / scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature") @@ -32,7 +32,7 @@ ThisBuild / developers := List( Developer(id="darkfrog", name="Matt Hicks", email="matt@matthicks.com", url=url("https://matthicks.com")) ) -val fabric: String = "1.15.4" +val fabric: String = "1.15.5" val collectionCompat: String = "2.12.0"