Skip to content
This repository has been archived by the owner on May 13, 2024. It is now read-only.

Commit

Permalink
Release v.0.10.3 (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
mfvanek authored Jan 27, 2024
1 parent b037ced commit c7adfd0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ description = "pg-index-health-test-starter build"

allprojects {
group = "io.github.mfvanek"
version = "0.10.3-SNAPSHOT"
version = "0.10.3"

repositories {
mavenLocal()
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
spring-boot = "2.7.18"
pitest-junit5Plugin = "1.2.1"
pitest-core = "1.15.3"
pg-index-health = "0.10.2"
pg-index-health = "0.10.3"
commons-lang3 = "3.14.0"

[libraries]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class DatabaseConfig {
@SuppressWarnings({"java:S2095", "java:S1452", "resource"})
@Bean(initMethod = "start", destroyMethod = "stop")
public JdbcDatabaseContainer<?> jdbcDatabaseContainer() {
return new PostgreSQLContainer<>("postgres:15.3")
return new PostgreSQLContainer<>("postgres:15.5")
.withDatabaseName("demo_for_pg_index_health_starter")
.withUsername("demo_user")
.withPassword("myUniquePassword")
Expand Down

0 comments on commit c7adfd0

Please sign in to comment.