Skip to content

Commit

Permalink
Bump version to 0.7.0-alpha1
Browse files Browse the repository at this point in the history
  • Loading branch information
orangain committed Jul 21, 2024
1 parent 3515c06 commit 01ad21c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ on [Maven Central](https://central.sonatype.com/artifact/io.github.orangain/json

```kts
dependencies {
testImplementation("io.github.orangain:json-fuzzy-match:0.6.0")
testImplementation("io.github.orangain:json-fuzzy-match:0.7.0-alpha1")
}
```

Expand All @@ -68,7 +68,7 @@ dependencies {
<dependency>
<groupId>io.github.orangain</groupId>
<artifactId>json-fuzzy-match</artifactId>
<version>0.6.0</version>
<version>0.7.0-alpha1</version>
</dependency>
</dependencies>
```
Expand Down
5 changes: 3 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
}

group = "io.github.orangain"
version = "0.6.0"
version = "0.7.0-alpha1"

repositories {
mavenCentral()
Expand Down Expand Up @@ -89,5 +89,6 @@ tasks.named<SonatypeCentralUploadTask>("sonatypeCentralUpload") {
)

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

0 comments on commit 01ad21c

Please sign in to comment.