Skip to content

Commit d6f3bfc

Browse files
committed
#121 upgrade to embedded postgres binaries 14.10
1 parent a66ae39 commit d6f3bfc

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
@@ -24,12 +24,12 @@ Add the following Maven dependency:
2424
<dependency>
2525
<groupId>io.zonky.test</groupId>
2626
<artifactId>embedded-postgres</artifactId>
27-
<version>2.0.4</version>
27+
<version>2.0.5</version>
2828
<scope>test</scope>
2929
</dependency>
3030
```
3131

32-
The default version of the embedded postgres is `PostgreSQL 14.8`, 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 14.10`, 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 14.8`, 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 14.10`, 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>15.3.0</version>
82+
<version>16.1.0</version>
8383
<type>pom</type>
8484
<scope>import</scope>
8585
</dependency>
@@ -97,15 +97,15 @@ The default version of the embedded postgres is `PostgreSQL 14.8`, but it can be
9797
configurations.all {
9898
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
9999
if (details.requested.group == 'io.zonky.test.postgres') {
100-
details.useVersion '15.3.0'
100+
details.useVersion '16.1.0'
101101
}
102102
}
103103
}
104104

105105
2. If you use Gradle 5+, [Maven BOMs are supported out of the box](https://docs.gradle.org/5.0/userguide/managing_transitive_dependencies.html#sec:bom_import), so you can import the bom:
106106

107107
dependencies {
108-
testImplementation enforcedPlatform('io.zonky.test.postgres:embedded-postgres-binaries-bom:15.3.0')
108+
testImplementation enforcedPlatform('io.zonky.test.postgres:embedded-postgres-binaries-bom:16.1.0')
109109
}
110110

111111
3. Or, you can use [Spring's dependency management plugin](https://docs.spring.io/dependency-management-plugin/docs/current/reference/html/#dependency-management-configuration-bom-import) that provides Maven-like dependency management to Gradle:
@@ -116,7 +116,7 @@ The default version of the embedded postgres is `PostgreSQL 14.8`, but it can be
116116
117117
dependencyManagement {
118118
imports {
119-
mavenBom 'io.zonky.test.postgres:embedded-postgres-binaries-bom:15.3.0'
119+
mavenBom 'io.zonky.test.postgres:embedded-postgres-binaries-bom:16.1.0'
120120
}
121121
}
122122

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>14.8.0</embedded-postgres-binaries.version>
33+
<embedded-postgres-binaries.version>14.10.0</embedded-postgres-binaries.version>
3434
</properties>
3535

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

0 commit comments

Comments
 (0)