Skip to content

Commit b07573c

Browse files
committed
Release 0.4.0
1 parent de8f51c commit b07573c

1 file changed

Lines changed: 8 additions & 5 deletions

File tree

README.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
[![Build Status](https://travis-ci.org/okumin/akka-persistence-sql-async.svg?branch=master)](https://travis-ci.org/okumin/akka-persistence-sql-async)
44

5-
A journal and snapshot store plugin for [akka-persistence](http://doc.akka.io/docs/akka/2.4.0/scala/persistence.html) using RDBMS.
5+
A journal and snapshot store plugin for [akka-persistence](http://doc.akka.io/docs/akka/2.4.12/scala/persistence.html) using RDBMS.
66
Akka-persistence-sql-async executes queries by [ScalikeJDBC-Async](https://github.com/scalikejdbc/scalikejdbc-async) that provides non-blocking APIs to talk to databases.
77

88

99
Akka-persistence-sql-async supports following databases.
1010
- MySQL
1111
- PostgreSQL
1212

13-
This library is tested against [akka-persistence-tck](http://doc.akka.io/docs/akka/2.4.0/scala/persistence.html#plugin-tck).
13+
This library is tested against [akka-persistence-tck](http://doc.akka.io/docs/akka/2.4.12/scala/persistence.html#plugin-tck).
1414

1515
## Usage
1616

@@ -19,19 +19,19 @@ This library is tested against [akka-persistence-tck](http://doc.akka.io/docs/ak
1919
You should add the following dependency.
2020

2121
```
22-
libraryDependencies += "com.okumin" %% "akka-persistence-sql-async" % "0.3.1"
22+
libraryDependencies += "com.okumin" %% "akka-persistence-sql-async" % "0.4.0"
2323
```
2424

2525
And then, please include the mysql-async if you use MySQL.
2626

2727
```
28-
libraryDependencies += "com.github.mauricio" %% "mysql-async" % "0.2.16"
28+
libraryDependencies += "com.github.mauricio" %% "mysql-async" % "0.2.20"
2929
```
3030

3131
And if you use PostgreSQL.
3232

3333
```
34-
libraryDependencies += "com.github.mauricio" %% "postgresql-async" % "0.2.16"
34+
libraryDependencies += "com.github.mauricio" %% "postgresql-async" % "0.2.20"
3535
```
3636

3737
### Configuration
@@ -128,6 +128,9 @@ CREATE TABLE IF NOT EXISTS {your_snapshot_table_name} (
128128

129129
## Release Notes
130130

131+
### 0.4.0 - Nov 5, 2016
132+
- Update mysql-async and postgresql-async
133+
131134
### 0.3.1 - Oct 15, 2015
132135
- [Never execute invalid SQLs](https://github.com/okumin/akka-persistence-sql-async/issues/10)
133136

0 commit comments

Comments
 (0)