Skip to content

Commit

Permalink
Release 3.4.16
Browse files Browse the repository at this point in the history
  • Loading branch information
darkfrog26 committed Sep 6, 2024
1 parent 71ffed5 commit 43d2888
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
Powerful configuration management for Scala (JSON, properties, command-line arguments, and environment variables)

# Latest version
3.4.15
3.4.16

# Justification

Expand Down Expand Up @@ -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.15" // Scala
libraryDependencies += "com.outr" %%% "profig" % "3.4.15" // Scala.js / Cross-Build
libraryDependencies += "com.outr" %% "profig" % "3.4.16" // Scala
libraryDependencies += "com.outr" %%% "profig" % "3.4.16" // Scala.js / Cross-Build
```

## Getting Started
Expand Down Expand Up @@ -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.1"
// javaVersion: String = "22.0.2"
```

You can also load from a higher level as a case class to get more information. For example:
Expand All @@ -176,7 +176,7 @@ object Specification {

val info = Profig("java").as[JVMInfo]
// info: JVMInfo = JVMInfo(
// version = "22.0.1",
// version = "22.0.2",
// specification = Specification(
// vendor = "Oracle Corporation",
// name = "Java Platform API Specification",
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ val scala2 = List(scala213)
val allScalaVersions = scala2 ::: scala3

ThisBuild / organization := "com.outr"
ThisBuild / version := "3.4.15"
ThisBuild / version := "3.4.16"
ThisBuild / scalaVersion := scala213
ThisBuild / scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature")

Expand All @@ -32,7 +32,7 @@ ThisBuild / developers := List(
Developer(id="darkfrog", name="Matt Hicks", email="[email protected]", url=url("https://matthicks.com"))
)

val fabric: String = "1.15.3"
val fabric: String = "1.15.4"

val collectionCompat: String = "2.12.0"

Expand Down

0 comments on commit 43d2888

Please sign in to comment.