Skip to content

Commit

Permalink
v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tototoshi committed Aug 24, 2016
1 parent 8315313 commit 243b106
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ RDB as cache storage
## Install

```scala
libraryDependencies += "com.github.tototoshi" %% "dbcache-mysql" % "0.1.0"
libraryDependencies += "com.github.tototoshi" %% "dbcache-mysql" % "0.1.1"

// or
// libraryDependencies += "com.github.tototoshi" %% "dbcache-postgresql" % "0.1.0"
// libraryDependencies += "com.github.tototoshi" %% "dbcache-postgresql" % "0.1.1"
```

## Setup
Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ lazy val core = (project in file("core"))
.settings(
name := "dbcache-core",
organization := "com.github.tototoshi",
version := "0.1.0",
version := "0.1.1",
scalaVersion := "2.11.8",
libraryDependencies ++= testDependencies
).settings(Publish.settings)
Expand All @@ -31,7 +31,7 @@ lazy val mysql = (project in file("mysql"))
.settings(
name := "dbcache-mysql",
organization := "com.github.tototoshi",
version := "0.1.0",
version := "0.1.1",
scalaVersion := "2.11.8",
libraryDependencies ++= testDependencies ++ Seq(
mysqlDependency % "provided"
Expand All @@ -42,7 +42,7 @@ lazy val postgresql = (project in file("postgresql"))
.settings(
name := "dbcache-postgresql",
organization := "com.github.tototoshi",
version := "0.1.0",
version := "0.1.1",
scalaVersion := "2.11.8",
libraryDependencies ++= testDependencies ++ Seq(
postgresqlDependency % "provided"
Expand Down

0 comments on commit 243b106

Please sign in to comment.