Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ Add the following Maven dependency:
<dependency>
<groupId>io.zonky.test</groupId>
<artifactId>embedded-postgres</artifactId>
<version>1.2.4</version>
<version>1.2.5</version>
<scope>test</scope>
</dependency>
```

The default version of the embedded postgres is `PostgreSQL 10.9`, but you can change it by following the instructions described in [Postgres version](#postgres-version).
The default version of the embedded postgres is `PostgreSQL 10.10`, but you can change it by following the instructions described in [Postgres version](#postgres-version).

## Basic Usage

Expand Down Expand Up @@ -71,15 +71,15 @@ independent databases gives you.

## Postgres version

The default version of the embedded postgres is `PostgreSQL 10.9`, but it can be changed by importing `embedded-postgres-binaries-bom` in a required version into your dependency management section.
The default version of the embedded postgres is `PostgreSQL 10.10`, but it can be changed by importing `embedded-postgres-binaries-bom` in a required version into your dependency management section.

```xml
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.zonky.test.postgres</groupId>
<artifactId>embedded-postgres-binaries-bom</artifactId>
<version>11.4.0</version>
<version>11.5.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<embedded-postgres-binaries.version>10.9.0</embedded-postgres-binaries.version>
<embedded-postgres-binaries.version>10.10.0</embedded-postgres-binaries.version>
</properties>

<url>https://github.com/zonkyio/embedded-postgres</url>
Expand Down