Skip to content

Commit fb0ea74

Browse files
committed
0.4.0-RC
1 parent 808e34b commit fb0ea74

File tree

4 files changed

+25
-20
lines changed

4 files changed

+25
-20
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,20 +30,20 @@ Add `scalikejdbc-async` to your dependencies.
3030

3131
```scala
3232
libraryDependencies ++= Seq(
33-
"org.scalikejdbc" %% "scalikejdbc-async" % "[0.3,)",
34-
"com.github.mauricio" %% "postgresql-async" % "0.2.11",
35-
"com.github.mauricio" %% "mysql-async" % "0.2.11",
36-
"org.slf4j" % "slf4j-simple" % "[1.7,)" // slf4j implementation
33+
"org.scalikejdbc" %% "scalikejdbc-async" % "0.3.+",
34+
"com.github.mauricio" %% "postgresql-async" % "0.2.+",
35+
"com.github.mauricio" %% "mysql-async" % "0.2.+",
36+
"org.slf4j" % "slf4j-simple" % "1.7.+" // slf4j implementation
3737
)
3838
```
3939

4040
If you're a Play2 user, use play-plugin too!
4141

4242
```scala
4343
val appDependencies = Seq(
44-
"org.scalikejdbc" %% "scalikejdbc-async" % "[0.3,)",
45-
"org.scalikejdbc" %% "scalikejdbc-async-play-plugin" % "[0.3,)",
46-
"com.github.mauricio" %% "postgresql-async" % "0.2.11"
44+
"org.scalikejdbc" %% "scalikejdbc-async" % "0.3.+",
45+
"org.scalikejdbc" %% "scalikejdbc-async-play-plugin" % "0.3.+",
46+
"com.github.mauricio" %% "postgresql-async" % "0.2.+"
4747
)
4848
```
4949

@@ -151,7 +151,7 @@ password: sa
151151
Published binary files have the following copyright:
152152

153153
```
154-
Copyright 2013 ScalikeJDBC committers
154+
Copyright 2013 - 2014 scalikejdbc.org
155155
156156
Apache License, Version 2.0
157157

project/Build.scala

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

55
object ScalikeJDBCAsyncProject extends Build {
66

7-
lazy val _version = "0.3.6-SNAPSHOT"
8-
lazy val scalikejdbcVersion = "2.0.0-beta2"
7+
lazy val _version = "0.4.0-RC"
8+
lazy val scalikejdbcVersion = "2.0.0-RC3"
9+
// TODO Scala 2.11 https://github.com/mauricio/postgresql-async/pull/87
910
lazy val mauricioVersion = "0.2.13"
10-
lazy val defaultPlayVersion = "2.2.2"
11+
lazy val defaultPlayVersion = "2.2.3"
1112

1213
lazy val core = Project(
1314
id = "core",
@@ -27,9 +28,9 @@ object ScalikeJDBCAsyncProject extends Build {
2728
"com.github.mauricio" %% "postgresql-async" % mauricioVersion % "provided",
2829
"com.github.mauricio" %% "mysql-async" % mauricioVersion % "provided",
2930
"org.postgresql" % "postgresql" % "9.3-1101-jdbc41" % "test",
30-
"mysql" % "mysql-connector-java" % "5.1.30" % "test",
31-
"org.scalatest" %% "scalatest" % "2.1.3" % "test",
32-
"ch.qos.logback" % "logback-classic" % "1.1.2" % "test"
31+
"mysql" % "mysql-connector-java" % "5.1.+" % "test",
32+
"org.scalatest" %% "scalatest" % "2.1.+" % "test",
33+
"ch.qos.logback" % "logback-classic" % "1.1.+" % "test"
3334
)
3435
},
3536
sbtPlugin := false,
@@ -84,10 +85,10 @@ object ScalikeJDBCAsyncProject extends Build {
8485
"com.github.mauricio" %% "postgresql-async" % mauricioVersion,
8586
"com.github.mauricio" %% "mysql-async" % mauricioVersion,
8687
"org.postgresql" % "postgresql" % "9.3-1101-jdbc41",
87-
"com.github.tototoshi" %% "play-flyway" % "1.0.1",
88-
"mysql" % "mysql-connector-java" % "5.1.30",
89-
"org.json4s" %% "json4s-ext" % "3.2.8",
90-
"com.github.tototoshi" %% "play-json4s-native" % "0.2.0"
88+
"com.github.tototoshi" %% "play-flyway" % "1.0.+",
89+
"mysql" % "mysql-connector-java" % "5.1.+",
90+
"org.json4s" %% "json4s-ext" % "3.2.+",
91+
"com.github.tototoshi" %% "play-json4s-native" % "0.2.+"
9192
)
9293
play.Project(appName, appVersion, appDependencies, path = file("play-sample")).settings(
9394
scalaVersion in ThisBuild := "2.10.3",

project/plugins.sbt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@ libraryDependencies <+= (sbtVersion){ sv =>
1010
}
1111
}
1212

13-
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.2.2")
13+
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.2.3")
1414

1515
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.1.4")
1616

17+
addSbtPlugin("com.github.mpeltonen" % "sbt-idea" % "1.6.0")
18+
19+
addSbtPlugin("com.typesafe.sbt" % "sbt-pgp" % "0.8.3")
20+

release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/sh
22

3-
sbt clean "project core" publish-signed "project play-plugin" publish-signed
3+
sbt clean "project core" publishSigned "project play-plugin" publishSigned
44

0 commit comments

Comments
 (0)