Skip to content

Commit 45ae268

Browse files
committed
Merge branch 'release/0.5.5'
2 parents 7fd2a47 + 3dd053e commit 45ae268

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: scala
22
scala:
33
- 2.10.4
4-
- 2.11.4
4+
- 2.11.5
55
script: sbt clean coverage test
66
after_success: sbt coveralls
77
addons:

core/src/main/scala/scalikejdbc/async/AsyncConnectionPool.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ abstract class AsyncConnectionPool(
3434
username = user,
3535
host = jdbcUrl.host,
3636
port = jdbcUrl.port,
37-
password = Option(password),
38-
database = Option(jdbcUrl.database)
37+
password = Option(password).filterNot(_.trim.isEmpty),
38+
database = Option(jdbcUrl.database).filterNot(_.trim.isEmpty)
3939
)
4040

4141
/**

project/Build.scala

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import Keys._
33

44
object ScalikeJDBCAsyncProject extends Build {
55

6-
lazy val _version = "0.5.4"
7-
lazy val scalikejdbcVersion = "2.2.1"
6+
lazy val _version = "0.5.5"
7+
lazy val scalikejdbcVersion = "2.2.2"
88
lazy val mauricioVersion = "0.2.15"
99
lazy val defaultPlayVersion = play.core.PlayVersion.current
1010

@@ -15,8 +15,8 @@ object ScalikeJDBCAsyncProject extends Build {
1515
organization := "org.scalikejdbc",
1616
name := "scalikejdbc-async",
1717
version := _version,
18-
scalaVersion := "2.11.4",
19-
crossScalaVersions := Seq("2.11.4", "2.10.4"),
18+
scalaVersion := "2.11.5",
19+
crossScalaVersions := Seq("2.11.5", "2.10.4"),
2020
publishTo <<= version { (v: String) => _publishTo(v) },
2121
publishMavenStyle := true,
2222
resolvers ++= _resolvers,
@@ -52,8 +52,8 @@ object ScalikeJDBCAsyncProject extends Build {
5252
organization := "org.scalikejdbc",
5353
name := "scalikejdbc-async-play-plugin",
5454
version := _version,
55-
scalaVersion := "2.11.4",
56-
crossScalaVersions := Seq("2.11.4", "2.10.4"),
55+
scalaVersion := "2.11.5",
56+
crossScalaVersions := Seq("2.11.5", "2.10.4"),
5757
resolvers ++= _resolvers,
5858
resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/",
5959
libraryDependencies <++= (scalaVersion) { scalaVersion =>
@@ -87,13 +87,13 @@ object ScalikeJDBCAsyncProject extends Build {
8787
"com.github.tototoshi" %% "play-flyway" % "1.2.0",
8888
"mysql" % "mysql-connector-java" % "5.1.34",
8989
"org.json4s" %% "json4s-ext" % "3.2.11",
90-
"com.github.tototoshi" %% "play-json4s-native" % "0.3.0"
90+
"com.github.tototoshi" %% "play-json4s-native" % "0.3.+"
9191
)
9292
Project(appName, file("play-sample")).enablePlugins(play.PlayScala).settings(
93-
scalaVersion in ThisBuild := "2.11.4",
93+
scalaVersion in ThisBuild := "2.11.5",
9494
libraryDependencies ++= appDependencies,
9595
resolvers ++= Seq(
96-
"sonatype releases" at "http://oss.sonatype.org/content/repositories/releases"
96+
"sonatype releases" at "https://oss.sonatype.org/content/repositories/releases"
9797
)
9898
).dependsOn(core, playPlugin)
9999
}
@@ -104,7 +104,7 @@ object ScalikeJDBCAsyncProject extends Build {
104104
else Some("releases" at nexus + "service/local/staging/deploy/maven2")
105105
}
106106
val _resolvers = Seq(
107-
"sonatype releases" at "http://oss.sonatype.org/content/repositories/releases"
107+
"sonatype releases" at "https://oss.sonatype.org/content/repositories/releases"
108108
)
109109
val _scalacOptions = Seq("-deprecation", "-unchecked")
110110
val _pomExtra = <url>http://scalikejdbc.org/</url>

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "0.2.1")
33
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0")
44
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.1.7")
55
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.7.4")
6-
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.0.1")
6+
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.0.2")
77
addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.0.0.BETA1")
88

99
resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/"

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" "+ publishSigned" "project play-plugin" "+ publishSigned" sonatypeRelease
3+
sbt clean "project core" "+ publishSigned" "project play-plugin" "+ publishSigned" #sonatypeRelease
44

0 commit comments

Comments
 (0)