Skip to content

Commit

Permalink
v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tototoshi committed Nov 19, 2023
1 parent 99dab8a commit 2a5b1f2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
14 changes: 10 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ RDB as a cache storage
## Install

```scala
libraryDependencies += "com.github.tototoshi" %% "dbcache-mysql" % "0.4.0"
libraryDependencies += "com.github.tototoshi" %% "dbcache-mysql" % "0.5.0"

// or
// libraryDependencies += "com.github.tototoshi" %% "dbcache-postgresql" % "0.4.0"
// libraryDependencies += "com.github.tototoshi" %% "dbcache-postgresql" % "0.5.0"
```

## Setup
Expand Down Expand Up @@ -106,12 +106,18 @@ Tue Apr 26 22:26:57 JST 2016: None
```


## With Play framework
## With Play framework4_.

|dbcache-play version|Play version|Scala version|
|-------------------:|-----------:|------------:|
|0.5.0 |2.9.x |2.13/3.3 |
|0.4.0 |2.8.x |2.12/2.13 |


Add dbcache-play to dependencies.

```scala
libraryDependencies += "com.github.tototoshi" %% "dbcache-play" % "0.4.0"
libraryDependencies += "com.github.tototoshi" %% "dbcache-play" % "0.5.0"
```

The code below is Play integration example with scalikejdbc
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ lazy val commonSettings = Seq(
scalacOptions ++= Seq("-deprecation"),
scalaVersion := "2.13.12",
crossScalaVersions := Seq("2.13.12", "3.3.1"),
version := "1.0.0-SNAPSHOT"
version := "0.5.0"
)

lazy val playScala3workaround = Def.settings(
Expand Down

0 comments on commit 2a5b1f2

Please sign in to comment.