Skip to content

Commit 5a01d4a

Browse files
committed
* Scala 2.13
* mongo-scala-driver 2.7.0 * MongoDB Driver Async 3.11.0
1 parent adf5cd9 commit 5a01d4a

File tree

4 files changed

+12
-11
lines changed

4 files changed

+12
-11
lines changed

CHANGES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## Versions
44

5+
### 1.6.6
6+
* Scala 2.13
7+
* mongo-scala-driver 2.7.0
8+
* MongoDB Driver Async 3.11.0
9+
510
### 1.6.5
611
* MongoConfig added (also for config values in application.conf)
712
* MongoPoolOptions added

build.sbt

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ name := "simple-mongo"
66

77
organization := "com.sfxcode.nosql"
88

9-
// crossScalaVersions := Seq("2.12.8", "2.13.0")
10-
crossScalaVersions := Seq("2.12.8")
9+
crossScalaVersions := Seq("2.13.0", "2.12.9")
1110

1211
scalaVersion := crossScalaVersions.value.head
1312

@@ -28,7 +27,6 @@ lazy val docs = (project in file("docs"))
2827
name := "simple mongo docs",
2928
publish / skip := true,
3029
ghpagesNoJekyll := true,
31-
paradoxExpectedNumberOfRoots := 1,
3230
git.remoteRepo := "[email protected]:sfxcode/simple-mongo.git",
3331
Compile / paradoxMaterialTheme ~= {
3432
_.withRepository(uri("https://github.com/sfxcode/simple-mongo"))
@@ -43,7 +41,7 @@ resolvers +=
4341

4442
// Test
4543

46-
libraryDependencies += "org.specs2" %% "specs2-core" % "4.6.0" % Test
44+
libraryDependencies += "org.specs2" %% "specs2-core" % "4.7.0" % Test
4745

4846
libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.2.3" % Test
4947

@@ -53,9 +51,7 @@ libraryDependencies += "org.json4s" %% "json4s-native" % "3.6.7" % Test
5351

5452
libraryDependencies += "com.github.pathikrit" %% "better-files" % "3.8.0" % Test
5553

56-
// libraryDependencies += "org.mongodb.scala" %% "mongo-scala-driver" % "2.7.0-17-ge348ba1-SNAPSHOT"
57-
//libraryDependencies += "org.mongodb.scala" %% "mongo-scala-driver" % "2.7.0"
58-
libraryDependencies += "org.mongodb.scala" %% "mongo-scala-driver" % "2.6.0"
54+
libraryDependencies += "org.mongodb.scala" %% "mongo-scala-driver" % "2.7.0"
5955

6056
libraryDependencies += "com.typesafe" % "config" % "1.3.4"
6157

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.3.0-RC2
1+
sbt.version=1.3.0-RC4

project/plugins.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.9.0")
1414

1515
// updates, release
1616

17-
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.4.1")
17+
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.4.2")
1818

1919
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.5")
2020

2121
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.11")
2222

2323
// paradox
24-
addSbtPlugin("com.lightbend.paradox" % "sbt-paradox" % "0.6.0")
24+
addSbtPlugin("com.lightbend.paradox" % "sbt-paradox" % "0.6.3")
2525

26-
addSbtPlugin("com.lightbend.paradox" % "sbt-paradox-theme" % "0.6.0")
26+
addSbtPlugin("com.lightbend.paradox" % "sbt-paradox-theme" % "0.6.3")
2727

2828
addSbtPlugin("io.github.jonas" % "sbt-paradox-material-theme" % "0.6.0")
2929

0 commit comments

Comments
 (0)