Skip to content

Commit 1a98eee

Browse files
committed
dependency updates
1 parent ed3e253 commit 1a98eee

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ lazy val docs = (project in file("docs"))
2929
scalaVersion := "2.13.2",
3030
resolvers += "SFXCode" at "https://dl.bintray.com/sfxcode/maven/",
3131
libraryDependencies += "com.sfxcode.nosql" %% "simple-mongo" % "1.9.3",
32-
libraryDependencies += "org.xerial.snappy" % "snappy-java" % "1.1.7.3",
32+
libraryDependencies += "org.xerial.snappy" % "snappy-java" % "1.1.7.3",
3333
publish / skip := true,
3434
ghpagesNoJekyll := true,
3535
git.remoteRepo := "[email protected]:sfxcode/simple-mongo.git",
@@ -57,7 +57,7 @@ libraryDependencies += "org.json4s" %% "json4s-native" % "3.6.9" % Test
5757

5858
libraryDependencies += "org.mongodb.scala" %% "mongo-scala-driver" % "4.1.0"
5959

60-
libraryDependencies += "org.xerial.snappy" % "snappy-java" % "1.1.7.6" % Provided
60+
libraryDependencies += "org.xerial.snappy" % "snappy-java" % "1.1.7.7" % Provided
6161

6262
libraryDependencies += "com.github.luben" % "zstd-jni" % "1.4.5-6" % Provided
6363

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

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

76-
libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "2.1.6"
76+
libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "2.2.0"
7777

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

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.4.0-M2
1+
sbt.version=1.4.0-RC1

src/main/scala/com/sfxcode/nosql/mongo/MongoDAO.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ abstract class MongoDAO[A](provider: DatabaseProvider, collectionName: String)(i
3939

4040
/**
4141
*
42-
* @param sampleSize use sample size greate 0 for better performance on big collections
42+
* @param sampleSize use sample size greater 0 for better performance on big collections
4343
* @return List of column names
4444
*/
4545
def columnNames(sampleSize: Int = 0): List[String] = {

0 commit comments

Comments
 (0)