Skip to content

Commit e6a78a8

Browse files
authored
Merge pull request #242 from SwissBorg/update/docs
Update docs for v0.5.0-M6 release
2 parents c131574 + 2fa8bc3 commit e6a78a8

File tree

4 files changed

+20
-17
lines changed

4 files changed

+20
-17
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ You can read more about DAOs and schema variants in [the official documentation]
2121
To use `akka-persistence-postgres` in your SBT project, add the following to your `build.sbt`:
2222

2323
```scala
24-
libraryDependencies += "com.swissborg" %% "akka-persistence-postgres" % "0.5.0-M4"
24+
libraryDependencies += "com.swissborg" %% "akka-persistence-postgres" % "0.5.0-M6"
2525
```
2626

2727
For a maven project add:
2828
```xml
2929
<dependency>
3030
<groupId>com.swissborg</groupId>
3131
<artifactId>akka-persistence-postgres_2.13</artifactId>
32-
<version>0.5.0-M4</version>
32+
<version>0.5.0-M6</version>
3333
</dependency>
3434
```
3535
to your `pom.xml`.
@@ -130,14 +130,14 @@ We provide you with an optional artifact, `akka-persistence-postgres-migration`
130130
##### Add akka-persistence-migration to your project
131131
Add the following to your `build.sbt`
132132
```
133-
libraryDependencies += "com.swissborg" %% "akka-persistence-postgres-migration" % "0.5.0-M4"
133+
libraryDependencies += "com.swissborg" %% "akka-persistence-postgres-migration" % "0.5.0-M6"
134134
```
135135
For a maven project add:
136136
```xml
137137
<dependency>
138138
<groupId>com.swisborg</groupId>
139139
<artifactId>akka-persistence-postgres-migration_2.13</artifactId>
140-
<version>0.5.0-M4</version>
140+
<version>0.5.0-M6</version>
141141
</dependency>
142142
```
143143
to your `pom.xml`.

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ The main goal is to keep index size and memory consumption on a moderate level w
1818
To use `akka-persistence-postgres` in your SBT project, add the following to your `build.sbt`:
1919

2020
```scala
21-
libraryDependencies += "com.swisborg" %% "akka-persistence-postgres" % "0.5.0-M4"
21+
libraryDependencies += "com.swisborg" %% "akka-persistence-postgres" % "0.5.0-M6"
2222
```
2323

2424
For a maven project add:
2525
```xml
2626
<dependency>
2727
<groupId>com.swisborg</groupId>
2828
<artifactId>akka-persistence-postgres_2.13</artifactId>
29-
<version>0.5.0-M4</version>
29+
<version>0.5.0-M6</version>
3030
</dependency>
3131
```
3232
to your `pom.xml`.

docs/migration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ We provide you with an optional artifact, `akka-persistence-postgres-migration`
2222
#### Add akka-persistence-migration to your project
2323
Add the following to your `build.sbt`
2424
```
25-
libraryDependencies += "com.swissborg" %% "akka-persistence-postgres-migration" % "0.5.0-M4"
25+
libraryDependencies += "com.swissborg" %% "akka-persistence-postgres-migration" % "0.5.0-M6"
2626
```
2727
For a maven project add:
2828
```xml
2929
<dependency>
3030
<groupId>com.swisborg</groupId>
3131
<artifactId>akka-persistence-postgres-migration_2.13</artifactId>
32-
<version>0.5.0-M4</version>
32+
<version>0.5.0-M6</version>
3333
</dependency>
3434
```
3535
to your `pom.xml`.

scripts/docker-compose.yml

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1-
postgres:
2-
image: postgres:latest
3-
container_name: postgres
4-
environment:
5-
- "TZ=Europe/Amsterdam"
6-
- "POSTGRES_USER=docker"
7-
- "POSTGRES_PASSWORD=docker"
8-
ports:
9-
- "5432:5432" # credentials (docker:docker)
1+
version: "3"
2+
3+
services:
4+
postgres:
5+
image: postgres:latest
6+
container_name: postgres
7+
environment:
8+
- "TZ=Europe/Amsterdam"
9+
- "POSTGRES_USER=docker"
10+
- "POSTGRES_PASSWORD=docker"
11+
ports:
12+
- "5432:5432" # credentials (docker:docker)

0 commit comments

Comments
 (0)