Skip to content

Commit 5b8271b

Browse files
committed
Update dependencies
1 parent 17f3fa7 commit 5b8271b

File tree

4 files changed

+13
-10
lines changed

4 files changed

+13
-10
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,7 @@ nohup.out
2424
test*.log
2525
*.tmp
2626
null
27-
.attach_pid*
27+
.attach_pid*
28+
29+
# Security purposes
30+
.envrc

.scalafmt.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = 3.8.4
1+
version = 3.9.4
22
runner.dialect = scala3
33
align.preset = most
44
maxColumn = 250

build.sbt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ description := "Lightning Memory Database (LMDB) for scala ZIO"
44

55
licenses += "NON-AI-APACHE2" -> url(s"https://github.com/non-ai-licenses/non-ai-licenses/blob/main/NON-AI-APACHE2")
66

7-
scalaVersion := "3.3.4" // FOR LIBS USE SCALA LTS
8-
crossScalaVersions := Seq("2.13.15", "3.3.4")
7+
scalaVersion := "3.3.5" // FOR LIBS USE SCALA LTS
8+
crossScalaVersions := Seq("2.13.16", "3.3.5")
99

1010
lazy val versions = new {
11-
val zio = "2.1.14"
11+
val zio = "2.1.16"
1212
val zionio = "2.0.2"
13-
val ziojson = "0.7.4"
14-
val zioconfig = "4.0.3"
15-
val ziologging = "2.4.0"
16-
val lmdb = "0.9.0"
13+
val ziojson = "0.7.39"
14+
val zioconfig = "4.0.4"
15+
val ziologging = "2.5.0"
16+
val lmdb = "0.9.1"
1717
}
1818

1919
libraryDependencies ++= Seq(

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ addSbtPlugin("com.github.sbt" % "sbt-release" % "1.4.0")
22
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.3.1")
33
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.12.2")
44
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.6.3")
5-
addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.10.4")
5+
addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.11.0")
66
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.13.0")

0 commit comments

Comments
 (0)