Skip to content

Commit 5cebca0

Browse files
committed
Scala driver 1.0.1 release
1 parent 69f329d commit 5cebca0

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

docs/landing/data/releases.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
driverName = "mongo-scala-driver"
22
githubRepo = "mongo-scala-driver"
3-
current = "1.0.0"
3+
current = "1.0.1"
44

55
[[versions]]
6-
version = "1.0.0"
6+
version = "1.0.1"
77
status = "current"
88
docs = "./1.0"
99
api = "./1.0/scaladoc"

docs/reference/content/getting-started/installation-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ The recommended way to get started using the driver in your project is with a de
1717
## MongoDB Scala Driver
1818
The MongoDB Scala Driver
1919

20-
{{< install artifactId="mongo-scala-driver" version="1.0.0" mongoDriverVersion="3.1.0" scalaVersion="2.11">}}
20+
{{< install artifactId="mongo-scala-driver" version="1.0.1" mongoDriverVersion="3.1.0" scalaVersion="2.11">}}

docs/reference/data/mongodb.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ githubBranch = "master"
44
currentVersion = "1.0"
55
highlightTheme = "idea.css"
66
apiUrl = "/scaladoc/index.html"
7-
coreApiUrl = "http://api.mongodb.org/java/3.0/"
8-
coreDocsUrl = "http://mongodb.github.io/mongo-java-driver/3.0/"
7+
coreApiUrl = "http://api.mongodb.org/java/3.1/"
8+
coreDocsUrl = "http://mongodb.github.io/mongo-java-driver/3.1/"
99
mongoDriverVersion = "3.1.0" # Update in installation-guide.md

project/MongoScalaBuild.scala

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,12 @@ object MongoScalaBuild extends Build {
3131
val buildSettings = Seq(
3232
organization := "org.mongodb.scala",
3333
organizationHomepage := Some(url("http://www.mongodb.org")),
34-
version := "1.0.1-SNAPSHOT",
34+
version := "1.0.1",
3535
scalaVersion := scalaCoreVersion,
3636
libraryDependencies ++= coreDependencies,
3737
resolvers := mongoScalaResolvers,
38-
scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature", "-Xlint", "-Xlint:-missing-interpolator" /*, "-Xlog-implicits", "-Yinfer-debug", "-Xprint:typer"*/)
38+
scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature", "-Xlint", "-Xlint:-missing-interpolator"
39+
/*, "-Xlog-implicits", "-Yinfer-debug", "-Xprint:typer"*/)
3940
)
4041

4142
val publishSettings = Publish.settings

0 commit comments

Comments
 (0)