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

Next development iteration v0.10.2 #121

Merged
merged 1 commit into from
Nov 18, 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
6 changes: 3 additions & 3 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.10.0'
testImplementation 'io.github.mfvanek:pg-index-health-test-starter:0.10.1'
```

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

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

Expand All @@ -38,7 +38,7 @@ Using Maven:
<dependency>
<groupId>io.github.mfvanek</groupId>
<artifactId>pg-index-health-test-starter</artifactId>
<version>0.10.0</version>
<version>0.10.1</version>
<scope>test</scope>
</dependency>
```
Expand Down
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.1"
version = "0.10.2-SNAPSHOT"

repositories {
mavenLocal()
Expand Down