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

Next development iteration v.0.10.1 #111

Merged
merged 1 commit into from
Oct 15, 2023
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 @@ -22,14 +22,14 @@ Spring Boot Starter for using [pg-index-health](https://github.com/mfvanek/pg-in
## Installation
Using Gradle:
```groovy
testImplementation 'io.github.mfvanek:pg-index-health-test-starter:0.9.5'
testImplementation 'io.github.mfvanek:pg-index-health-test-starter:0.10.0'
```

<details>
<summary>with Kotlin DSL</summary>

```kotlin
testImplementation("io.github.mfvanek:pg-index-health-test-starter:0.9.5")
testImplementation("io.github.mfvanek:pg-index-health-test-starter:0.10.0")
```
</details>

Expand All @@ -38,7 +38,7 @@ Using Maven:
<dependency>
<groupId>io.github.mfvanek</groupId>
<artifactId>pg-index-health-test-starter</artifactId>
<version>0.9.5</version>
<version>0.10.0</version>
<scope>test</scope>
</dependency>
```
Expand All @@ -55,7 +55,7 @@ For **Java 8** compatible version take a look at release [0.7.0](https://github.
| 2.4.x | 8 | 0.3.x — 0.4.x |
| 2.5.x | 8 | 0.5.x — 0.6.x |
| 2.6.x | 8 | 0.7.x |
| 2.7.x | 11 | 0.8.x — 0.9.x |
| 2.7.x | 11 | 0.8.x — 0.10.x |

#### Spring Boot 3 compatibility
Starting from **0.9.0.1** added support for Spring Boot 3
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ description = "pg-index-health-test-starter build"

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

repositories {
mavenLocal()
Expand Down