Skip to content

Commit

Permalink
Bumped version to 3.1.0, added release notes for 3.1.0 (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
WellingR authored and octonato committed Dec 19, 2017
1 parent adefac7 commit fa4f84d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
18 changes: 16 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Add the following to your `build.sbt`:
resolvers += Resolver.jcenterRepo

// akka 2.5.x
libraryDependencies += "com.github.dnvriend" %% "akka-persistence-jdbc" % "3.0.1"
libraryDependencies += "com.github.dnvriend" %% "akka-persistence-jdbc" % "3.1.0"

// akka 2.4.x
libraryDependencies += "com.github.dnvriend" %% "akka-persistence-jdbc" % "2.8.0"
Expand All @@ -37,7 +37,7 @@ If you want to take action, feel free to contact Dennis Vriend <[email protected]
This source code is made available under the [Apache 2.0 License][apache]. The [quick summary of what this license means is available here](https://tldrlegal.com/license/apache-license-2.0-(apache-2.0))

## Configuration
The plugin relies on Slick 3.2.0 to do create the SQL dialect for the database in use, therefore the following must be configured in `application.conf`
The plugin relies on Slick 3.2.1 to do create the SQL dialect for the database in use, therefore the following must be configured in `application.conf`

Configure `akka-persistence`:
- instruct akka persistence to use the `jdbc-journal` plugin,
Expand Down Expand Up @@ -278,6 +278,20 @@ sys.addShutdownHook(system.terminate())

## Changelog

### 3.1.0 (2017-12-20)
For use with Akka 2.5.x only, please use the 2.8.0 release for Akka 2.4

Changes since v3.0.1
- The internal events by tag implementation could perform poorly in some special cases, this has been resolved. (see #155)
- EventsByTag queries are now executed more efficiently by avoiding re-querying data (see #149)
- The eventsByTag and currentEventsByTag queries are now documented (in scaladoc) to explain the guarantees offered by this plugin (and its caveats).
- Removed dependency on JournalRow in ReadJournalDao.
This is a breaking change for everyone who implements a custom ReadJournalDao.
- Updated Scala versions to 2.12.4 / 2.11.12
- Akka 2.5.6 -> 2.5.8
- Merged #139, #140, #141, #143, #145, #146, #148, #14, #152, #153, #154, #157, #158. Thanks to
[Renato Cavalcanti][renatocaval], [Ruud Welling][WellingR], [Sean Sullivan][sullis].

### 3.0.1 (2017-10-27)
For use with Akka 2.5.x only, please use the 2.8.0 release for Akka 2.4

Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version := "3.0.1"
version := "3.1.0"

0 comments on commit fa4f84d

Please sign in to comment.