Skip to content

Commit 717e3bc

Browse files
committed
1 parent ea01309 commit 717e3bc

File tree

5 files changed

+11
-8
lines changed

5 files changed

+11
-8
lines changed

CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33

44
## Versions
55

6+
### 2.2.2
7+
* mongo-scala-driver [4.2.3](https://mongodb.github.io/mongo-java-driver/4.2/driver-scala/)
8+
69
### 2.2.1
710
* mongo-scala-driver [4.2.2](https://mongodb.github.io/mongo-java-driver/4.2/driver-scala/)
811

build.sbt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ scalaVersion := crossScalaVersions.value.head
1111

1212
scalacOptions += "-deprecation"
1313

14-
parallelExecution in Test := false
14+
Test / parallelExecution := false
1515

1616
lazy val simple_mongo = (project in file("."))
1717
.enablePlugins(BuildInfoPlugin)
@@ -55,11 +55,11 @@ libraryDependencies += "joda-time" % "joda-time" % "2.10.10" % Test
5555

5656
libraryDependencies += "org.json4s" %% "json4s-native" % "3.6.11" % Test
5757

58-
libraryDependencies += "org.mongodb.scala" %% "mongo-scala-driver" % "4.2.2"
58+
libraryDependencies += "org.mongodb.scala" %% "mongo-scala-driver" % "4.2.3"
5959

6060
libraryDependencies += "org.xerial.snappy" % "snappy-java" % "1.1.8.4" % Provided
6161

62-
libraryDependencies += "com.github.luben" % "zstd-jni" % "1.4.9-1" % Provided
62+
libraryDependencies += "com.github.luben" % "zstd-jni" % "1.4.9-5" % Provided
6363

6464
val MongoJavaServerVersion = "1.38.0"
6565

@@ -73,7 +73,7 @@ libraryDependencies += "com.typesafe" % "config" % "1.4.1"
7373

7474
libraryDependencies += "com.typesafe.scala-logging" %% "scala-logging" % "3.9.3"
7575

76-
libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "2.4.2"
76+
libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "2.4.3"
7777

7878
buildInfoPackage := "com.sfxcode.nosql.mongo"
7979

@@ -85,7 +85,7 @@ licenses += ("Apache-2.0", url("https://www.apache.org/licenses/LICENSE-2.0.html
8585

8686
releaseCrossBuild := true
8787

88-
bintrayReleaseOnPublish in ThisBuild := true
88+
ThisBuild / bintrayReleaseOnPublish := true
8989

9090
publishMavenStyle := true
9191

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.4.8
1+
sbt.version=1.5.0

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.10.0")
88

99
// updates, release
1010

11-
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.5.2")
11+
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.5.3")
1212

1313
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.6.1")
1414

version.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version in ThisBuild := "2.2.2-SNAPSHOT"
1+
ThisBuild / version := "2.2.2-SNAPSHOT"

0 commit comments

Comments
 (0)