Skip to content

Commit

Permalink
Release 3.4.18
Browse files Browse the repository at this point in the history
  • Loading branch information
darkfrog26 committed Dec 21, 2024
1 parent 5d8af23 commit ba8289d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 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.17
3.4.18

# 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.17" // Scala
libraryDependencies += "com.outr" %%% "profig" % "3.4.17" // Scala.js / Cross-Build
libraryDependencies += "com.outr" %% "profig" % "3.4.18" // Scala
libraryDependencies += "com.outr" %%% "profig" % "3.4.18" // Scala.js / Cross-Build
```

## Getting Started
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.17"
ThisBuild / version := "3.4.18"
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="matt@matthicks.com", url=url("https://matthicks.com"))
)

val fabric: String = "1.15.5"
val fabric: String = "1.15.6"

val collectionCompat: String = "2.12.0"

Expand Down
6 changes: 3 additions & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")

addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.2")

addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.17.0")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.17.0")

addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.6")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.6")

addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.12.2")

Expand Down

0 comments on commit ba8289d

Please sign in to comment.