Skip to content

Commit 355a233

Browse files
committed
v0.4.0
1 parent 127e643 commit 355a233

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ RDB as cache storage
77
## Install
88

99
```scala
10-
libraryDependencies += "com.github.tototoshi" %% "dbcache-mysql" % "0.3.0"
10+
libraryDependencies += "com.github.tototoshi" %% "dbcache-mysql" % "0.4.0"
1111

1212
// or
13-
// libraryDependencies += "com.github.tototoshi" %% "dbcache-postgresql" % "0.3.0"
13+
// libraryDependencies += "com.github.tototoshi" %% "dbcache-postgresql" % "0.4.0"
1414
```
1515

1616
## Setup
@@ -111,7 +111,7 @@ Tue Apr 26 22:26:57 JST 2016: None
111111
Add dbcache-play to dependencies.
112112

113113
```scala
114-
libraryDependencies += "com.github.tototoshi" %% "dbcache-play" % "0.3.0"
114+
libraryDependencies += "com.github.tototoshi" %% "dbcache-play" % "0.4.0"
115115
```
116116

117117
The code below is Play integration example with scalikejdbc
@@ -141,7 +141,7 @@ class MySQLCacheApiProvider @Inject()(environment: Environment) extends Provider
141141
}
142142
```
143143

144-
Disable EhCache which is the default cache backend of Play 2.7.
144+
Disable EhCache which is the default cache backend of Play.
145145

146146
```
147147
play.modules.disabled += "play.api.cache.ehcache.EhCacheModule"

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ lazy val commonSettings = Seq(
1414
scalacOptions ++= Seq("-deprecation"),
1515
scalaVersion := "2.12.10",
1616
crossScalaVersions := Seq("2.13.1", "2.12.10"),
17-
version := "0.4.0-SNAPSHOT"
17+
version := "0.4.0"
1818
)
1919

2020
lazy val root = (project in file("."))

scripts/start-mysql.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ container_id=$(docker run \
1010
-d mysql:5.7)
1111

1212
echo -n 'Starting mysql'
13-
for i in $(seq 1 10)
13+
for i in $(seq 1 15)
1414
do
1515
echo -n '.'
1616
sleep 1

0 commit comments

Comments
 (0)