Skip to content

Commit 142e983

Browse files
committed
Release 0.2
1 parent 61f896a commit 142e983

3 files changed

Lines changed: 11 additions & 8 deletions

File tree

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
language: scala
22

33
scala:
4-
- 2.10.4
5-
- 2.11.5
4+
- 2.10.5
5+
- 2.11.6
66

77
addons:
88
postgresql: "9.3"

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.3.6/scala/persistence.html) using RDBMS.
5+
A journal and snapshot store plugin for [akka-persistence](http://doc.akka.io/docs/akka/2.3.9/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.3.6/scala/persistence.html#plugin-tck).
13+
This library is tested against [akka-persistence-tck](http://doc.akka.io/docs/akka/2.3.9/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.1"
22+
libraryDependencies += "com.okumin" %% "akka-persistence-sql-async" % "0.2"
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.15"
28+
libraryDependencies += "com.github.mauricio" %% "mysql-async" % "0.2.16"
2929
```
3030

3131
And if you use PostgreSQL.
3232

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

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

114114
## Release Notes
115115

116+
### 0.2 - Apr 5, 2015
117+
- [Change pass to password in configuration](https://github.com/okumin/akka-persistence-sql-async/issues/3)
118+
116119
### 0.1 - Sep 30, 2014
117120
- The first release
118121

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ organization := "com.okumin"
22

33
name := "akka-persistence-sql-async"
44

5-
version := "0.1"
5+
version := "0.2"
66

77
scalaVersion := "2.11.6"
88

0 commit comments

Comments
 (0)