Skip to content

Commit eb1f23f

Browse files
committed
Bump version to 0.7.0-alpha1
1 parent 1cdc186 commit eb1f23f

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ on [Maven Central](https://central.sonatype.com/artifact/io.github.orangain/json
5757

5858
```kts
5959
dependencies {
60-
testImplementation("io.github.orangain:json-fuzzy-match:0.6.0")
60+
testImplementation("io.github.orangain:json-fuzzy-match:0.7.0-alpha1")
6161
}
6262
```
6363

@@ -68,7 +68,7 @@ dependencies {
6868
<dependency>
6969
<groupId>io.github.orangain</groupId>
7070
<artifactId>json-fuzzy-match</artifactId>
71-
<version>0.6.0</version>
71+
<version>0.7.0-alpha1</version>
7272
</dependency>
7373
</dependencies>
7474
```

build.gradle.kts

+3-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins {
1010
}
1111

1212
group = "io.github.orangain"
13-
version = "0.6.0"
13+
version = "0.7.0-alpha1"
1414

1515
repositories {
1616
mavenCentral()
@@ -89,5 +89,6 @@ tasks.named<SonatypeCentralUploadTask>("sonatypeCentralUpload") {
8989
)
9090

9191
signingKey = System.getenv("PGP_SIGNING_KEY") // This is your PGP private key. This is required to sign your files
92-
signingKeyPassphrase = System.getenv("PGP_SIGNING_KEY_PASSPHRASE") // This is your PGP private key passphrase (optional) to decrypt your private key
92+
signingKeyPassphrase =
93+
System.getenv("PGP_SIGNING_KEY_PASSPHRASE") // This is your PGP private key passphrase (optional) to decrypt your private key
9394
}

0 commit comments

Comments
 (0)