Skip to content

Commit 5312f38

Browse files
authored
Merge pull request #20 from zonkyio/postgres-10.11
#18 Upgrade to embedded postgres binaries 10.11
2 parents c816dc0 + c5abc56 commit 5312f38

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22

33
## Introduction
44

5-
This project is a fork of [OpenTable Embedded PostgreSQL Component](https://github.com/opentable/otj-pg-embedded) created due to the inactivity of the maintainers.
5+
This project is a fork of [OpenTable Embedded PostgreSQL Component](https://github.com/opentable/otj-pg-embedded) created due to inactivity of maintainers.
66

77
The library allows embedding PostgreSQL into Java application code with no external dependencies.
88
Excellent for allowing you to unit test with a "real" Postgres without requiring end users to install and set up a database cluster.
99

10-
If you are using `Spring` or `Spring Boot` framework you can also consider using the specialized [embedded-database-spring-test](https://github.com/zonkyio/embedded-database-spring-test) project.
10+
If you are using `Spring` or `Spring Boot` framework you can also consider using the following more specialized [embedded-database-spring-test](https://github.com/zonkyio/embedded-database-spring-test) project.
1111

1212
## Features
1313

14-
* All features of `com.opentable:otj-pg-embedded:0.13.1`
14+
* All features of `com.opentable:otj-pg-embedded:0.13.3`
1515
* Configurable version of [PostgreSQL binaries](https://github.com/zonkyio/embedded-postgres-binaries)
1616
* PostgreSQL 11+ support even for Linux platform
1717
* Support for running inside Docker, including Alpine Linux
@@ -24,12 +24,12 @@ Add the following Maven dependency:
2424
<dependency>
2525
<groupId>io.zonky.test</groupId>
2626
<artifactId>embedded-postgres</artifactId>
27-
<version>1.2.5</version>
27+
<version>1.2.6</version>
2828
<scope>test</scope>
2929
</dependency>
3030
```
3131

32-
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).
32+
The default version of the embedded postgres is `PostgreSQL 10.11`, but you can change it by following the instructions described in [Postgres version](#postgres-version).
3333

3434
## Basic Usage
3535

@@ -71,15 +71,15 @@ independent databases gives you.
7171

7272
## Postgres version
7373

74-
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.
74+
The default version of the embedded postgres is `PostgreSQL 10.11`, but it can be changed by importing `embedded-postgres-binaries-bom` in a required version into your dependency management section.
7575

7676
```xml
7777
<dependencyManagement>
7878
<dependencies>
7979
<dependency>
8080
<groupId>io.zonky.test.postgres</groupId>
8181
<artifactId>embedded-postgres-binaries-bom</artifactId>
82-
<version>11.5.0</version>
82+
<version>11.6.0</version>
8383
<type>pom</type>
8484
<scope>import</scope>
8585
</dependency>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3131
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
3232

33-
<embedded-postgres-binaries.version>10.10.0</embedded-postgres-binaries.version>
33+
<embedded-postgres-binaries.version>10.11.0</embedded-postgres-binaries.version>
3434
</properties>
3535

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

0 commit comments

Comments
 (0)