Skip to content

Commit e2512b3

Browse files
committed
v0.1.0
1 parent e1405d8 commit e2512b3

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,10 @@ RDB as cache storage
55
## Install
66

77
```scala
8-
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
9-
10-
libraryDependencies += "com.github.tototoshi" %% "dbcache-mysql" % "0.1.0-SNAPSHOT"
8+
libraryDependencies += "com.github.tototoshi" %% "dbcache-mysql" % "0.1.0"
119

1210
// or
13-
// libraryDependencies += "com.github.tototoshi" %% "dbcache-postgresql" % "0.1.0-SNAPSHOT"
11+
// libraryDependencies += "com.github.tototoshi" %% "dbcache-postgresql" % "0.1.0"
1412
```
1513

1614
## Setup

build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ lazy val core = (project in file("core"))
2222
.settings(
2323
name := "dbcache-core",
2424
organization := "com.github.tototoshi",
25-
version := "0.1.0-SNAPSHOT",
25+
version := "0.1.0",
2626
scalaVersion := "2.11.8",
2727
libraryDependencies ++= testDependencies
2828
).settings(Publish.settings)
@@ -31,7 +31,7 @@ lazy val mysql = (project in file("mysql"))
3131
.settings(
3232
name := "dbcache-mysql",
3333
organization := "com.github.tototoshi",
34-
version := "0.1.0-SNAPSHOT",
34+
version := "0.1.0",
3535
scalaVersion := "2.11.8",
3636
libraryDependencies ++= testDependencies ++ Seq(
3737
mysqlDependency % "runtime"
@@ -42,7 +42,7 @@ lazy val postgresql = (project in file("postgresql"))
4242
.settings(
4343
name := "dbcache-postgresql",
4444
organization := "com.github.tototoshi",
45-
version := "0.1.0-SNAPSHOT",
45+
version := "0.1.0",
4646
scalaVersion := "2.11.8",
4747
libraryDependencies ++= testDependencies ++ Seq(
4848
postgresqlDependency % "runtime"

0 commit comments

Comments
 (0)