Skip to content

Commit 00e7256

Browse files
committed
Bumped dependencies
1 parent 9e341cb commit 00e7256

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ Add `scalikejdbc-async` to your dependencies.
3131
```scala
3232
libraryDependencies ++= Seq(
3333
"org.scalikejdbc" %% "scalikejdbc-async" % "[0.3,)",
34-
"com.github.mauricio" %% "postgresql-async" % "0.2.10",
35-
"com.github.mauricio" %% "mysql-async" % "0.2.10",
34+
"com.github.mauricio" %% "postgresql-async" % "0.2.11",
35+
"com.github.mauricio" %% "mysql-async" % "0.2.11",
3636
"org.slf4j" % "slf4j-simple" % "[1.7,)" // slf4j implementation
3737
)
3838
```
@@ -43,7 +43,7 @@ If you're a Play2 user, use play-plugin too!
4343
val appDependencies = Seq(
4444
"org.scalikejdbc" %% "scalikejdbc-async" % "[0.3,)",
4545
"org.scalikejdbc" %% "scalikejdbc-async-play-plugin" % "[0.3,)",
46-
"com.github.mauricio" %% "postgresql-async" % "0.2.10"
46+
"com.github.mauricio" %% "postgresql-async" % "0.2.11"
4747
)
4848
```
4949

project/Build.scala

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import play.Project._
44

55
object ScalikeJDBCAsyncProject extends Build {
66

7-
lazy val _version = "0.3.4"
7+
lazy val _version = "0.3.5-SNAPSHOT"
88
lazy val scalikejdbcVersion = "1.7.3"
9-
lazy val mauricioVersion = "0.2.10"
9+
lazy val mauricioVersion = "0.2.11"
1010
lazy val defaultPlayVersion = "2.2.1"
1111

1212
lazy val core = Project(
@@ -26,7 +26,7 @@ object ScalikeJDBCAsyncProject extends Build {
2626
"org.scalikejdbc" %% "scalikejdbc-interpolation" % scalikejdbcVersion % "compile",
2727
"com.github.mauricio" %% "postgresql-async" % mauricioVersion % "provided",
2828
"com.github.mauricio" %% "mysql-async" % mauricioVersion % "provided",
29-
"org.postgresql" % "postgresql" % "9.2-1003-jdbc4" % "test",
29+
"org.postgresql" % "postgresql" % "9.3-1100-jdbc41" % "test",
3030
"mysql" % "mysql-connector-java" % "5.1.28" % "test",
3131
"org.scalatest" %% "scalatest" % "1.9.1" % "test",
3232
"ch.qos.logback" % "logback-classic" % "1.0.13" % "test"
@@ -50,7 +50,7 @@ object ScalikeJDBCAsyncProject extends Build {
5050
organization := "org.scalikejdbc",
5151
name := "scalikejdbc-async-play-plugin",
5252
version := _version,
53-
scalaVersion := "2.10.0",
53+
scalaVersion := "2.10.3",
5454
resolvers ++= _resolvers,
5555
resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/",
5656
libraryDependencies <++= (scalaVersion) { scalaVersion =>
@@ -83,10 +83,10 @@ object ScalikeJDBCAsyncProject extends Build {
8383
"com.github.tototoshi" %% "play-flyway" % "1.0.0",
8484
"mysql" % "mysql-connector-java" % "5.1.28",
8585
"org.json4s" %% "json4s-ext" % "3.2.6",
86-
"com.github.tototoshi" %% "play-json4s-native" % "0.1.0"
86+
"com.github.tototoshi" %% "play-json4s-native" % "0.2.0"
8787
)
8888
play.Project(appName, appVersion, appDependencies, path = file("play-sample")).settings(
89-
scalaVersion in ThisBuild := "2.10.2",
89+
scalaVersion in ThisBuild := "2.10.3",
9090
resolvers ++= Seq(
9191
"sonatype releases" at "http://oss.sonatype.org/content/repositories/releases",
9292
"sonatype snapshots" at "http://oss.sonatype.org/content/repositories/snapshots"

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=0.13.1
1+
sbt.version=0.13.2-M1

0 commit comments

Comments
 (0)