Skip to content

Commit 1b9f2b3

Browse files
authored
upgrade dependencies (#11)
upgrade to sbt 0.13.6, slick 3.2.1, scala 2.12.3
1 parent cd6828b commit 1b9f2b3

File tree

6 files changed

+10
-9
lines changed

6 files changed

+10
-9
lines changed

README.adoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The plugin supports the following functionality:
1212

1313
* serialization of events to binary (bytea) or json (json/jsonb) format
1414
* rich tagging of events using hstore format
15-
* experimental http://doc.akka.io/docs/akka/current/scala/persistence-query.html[persistence-query] api
15+
* http://doc.akka.io/docs/akka/current/scala/persistence-query.html[persistence-query] api
1616
* pluggable write-strategies
1717
* transactional event-sourcing
1818
@@ -25,6 +25,7 @@ Versions: The table below lists the versions and their main dependencies
2525
|0.5.0|2.11.x |2.4.x |3.1.x
2626
|0.6.0|2.12.x or 2.11.x|2.4.x|3.2.0
2727
|0.7.0|2.12.x or 2.11.x|2.5.x|3.2.0
28+
|0.8.0-SNAPSHOT|2.12.x or 2.11.x|2.5.x|3.2.1
2829
|===
2930

3031
So you just need to add the following dependency to your SBT dependencies

build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ lazy val akkaPersistencePgModule = {
3737
)
3838
.configs(config("it") extend Test)
3939
.settings(Defaults.itSettings: _*)
40-
.settings(Seq(crossScalaVersions := Seq("2.11.11", "2.12.2"),
40+
.settings(Seq(crossScalaVersions := Seq("2.11.11", "2.12.3"),
4141
scalaVersion := crossScalaVersions.value.last)
4242
)
4343
.settings(libraryDependencies ++= mainDeps ++ mainTestDependencies)
@@ -57,7 +57,7 @@ lazy val benchmarkModule = {
5757
)
5858
.dependsOn(akkaPersistencePgModule % "it->test;test->test;compile->compile")
5959
.enablePlugins(GatlingPlugin)
60-
.settings(Seq(scalaVersion := "2.12.2"))
60+
.settings(Seq(scalaVersion := "2.12.3"))
6161

6262

6363
}
@@ -66,5 +66,5 @@ val main = Project(
6666
id = "akka-persistence-postgresql",
6767
base = file("."),
6868
settings = Defaults.coreDefaultSettings ++ commonSettings ++
69-
Seq(publishLocal := {}, publish := {}, packagedArtifacts := Map.empty, crossScalaVersions := Seq("2.11.11", "2.12.2"))
69+
Seq(publishLocal := {}, publish := {}, packagedArtifacts := Map.empty, crossScalaVersions := Seq("2.11.11", "2.12.3"))
7070
).aggregate(akkaPersistencePgModule, benchmarkModule)

modules/akka-persistence-pg/src/main/scala/akka/persistence/pg/journal/query/PostgresReadJournal.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,4 +86,4 @@ object PostgresReadJournal {
8686
*/
8787
final val Identifier = "akka.persistence.pg.journal.query"
8888

89-
}
89+
}

modules/akka-persistence-pg/src/test/scala/akka/persistence/pg/query/EventStoreQueryNotificationTest.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,4 +132,4 @@ class EventStoreQueryNotificationTest extends AbstractEventStoreTest
132132
}
133133

134134

135-
}
135+
}

project/Dependencies.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import sbt._
33
object Dependencies {
44

55
val akkaVersion = "2.5.3"
6-
val slickVersion = "3.2.0"
6+
val slickVersion = "3.2.1"
77
val gatlinVersion = "2.2.4"
88

99
val scalaJava8Compat = "org.scala-lang.modules" %% "scala-java8-compat" % "0.8.0"
@@ -29,7 +29,7 @@ object Dependencies {
2929
val gatling = "io.gatling" % "gatling-test-framework" % "2.2.4"
3030

3131
val hikariCp = "com.zaxxer" % "HikariCP" % "2.6.3"
32-
val postgres = "org.postgresql" % "postgresql" % "42.1.1"
32+
val postgres = "org.postgresql" % "postgresql" % "42.1.3"
3333

3434
val mainTestDependencies = Seq (
3535
scalaTest, akkaSlf4j, tyrex

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version = 0.13.15
1+
sbt.version = 0.13.16

0 commit comments

Comments
 (0)