diff --git a/README.md b/README.md
index 2ccd175d..e5babc04 100644
--- a/README.md
+++ b/README.md
@@ -21,7 +21,7 @@ You can read more about DAOs and schema variants in [the official documentation]
To use `akka-persistence-postgres` in your SBT project, add the following to your `build.sbt`:
```scala
-libraryDependencies += "com.swissborg" %% "akka-persistence-postgres" % "0.5.0-M4"
+libraryDependencies += "com.swissborg" %% "akka-persistence-postgres" % "0.5.0-M6"
```
For a maven project add:
@@ -29,7 +29,7 @@ For a maven project add:
com.swissborg
akka-persistence-postgres_2.13
- 0.5.0-M4
+ 0.5.0-M6
```
to your `pom.xml`.
@@ -130,14 +130,14 @@ We provide you with an optional artifact, `akka-persistence-postgres-migration`
##### Add akka-persistence-migration to your project
Add the following to your `build.sbt`
```
-libraryDependencies += "com.swissborg" %% "akka-persistence-postgres-migration" % "0.5.0-M4"
+libraryDependencies += "com.swissborg" %% "akka-persistence-postgres-migration" % "0.5.0-M6"
```
For a maven project add:
```xml
com.swisborg
akka-persistence-postgres-migration_2.13
- 0.5.0-M4
+ 0.5.0-M6
```
to your `pom.xml`.
diff --git a/docs/index.md b/docs/index.md
index 67a3be4c..d8902c7e 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -18,7 +18,7 @@ The main goal is to keep index size and memory consumption on a moderate level w
To use `akka-persistence-postgres` in your SBT project, add the following to your `build.sbt`:
```scala
-libraryDependencies += "com.swisborg" %% "akka-persistence-postgres" % "0.5.0-M4"
+libraryDependencies += "com.swisborg" %% "akka-persistence-postgres" % "0.5.0-M6"
```
For a maven project add:
@@ -26,7 +26,7 @@ For a maven project add:
com.swisborg
akka-persistence-postgres_2.13
- 0.5.0-M4
+ 0.5.0-M6
```
to your `pom.xml`.
diff --git a/docs/migration.md b/docs/migration.md
index ceaf4329..c32595d7 100644
--- a/docs/migration.md
+++ b/docs/migration.md
@@ -22,14 +22,14 @@ We provide you with an optional artifact, `akka-persistence-postgres-migration`
#### Add akka-persistence-migration to your project
Add the following to your `build.sbt`
```
-libraryDependencies += "com.swissborg" %% "akka-persistence-postgres-migration" % "0.5.0-M4"
+libraryDependencies += "com.swissborg" %% "akka-persistence-postgres-migration" % "0.5.0-M6"
```
For a maven project add:
```xml
com.swisborg
akka-persistence-postgres-migration_2.13
- 0.5.0-M4
+ 0.5.0-M6
```
to your `pom.xml`.
diff --git a/scripts/docker-compose.yml b/scripts/docker-compose.yml
index c1062a07..afba0556 100644
--- a/scripts/docker-compose.yml
+++ b/scripts/docker-compose.yml
@@ -1,9 +1,12 @@
-postgres:
- image: postgres:latest
- container_name: postgres
- environment:
- - "TZ=Europe/Amsterdam"
- - "POSTGRES_USER=docker"
- - "POSTGRES_PASSWORD=docker"
- ports:
- - "5432:5432" # credentials (docker:docker)
+version: "3"
+
+services:
+ postgres:
+ image: postgres:latest
+ container_name: postgres
+ environment:
+ - "TZ=Europe/Amsterdam"
+ - "POSTGRES_USER=docker"
+ - "POSTGRES_PASSWORD=docker"
+ ports:
+ - "5432:5432" # credentials (docker:docker)