Skip to content

Commit

Permalink
increase snapshot version number
Browse files Browse the repository at this point in the history
  • Loading branch information
esaulpaugh committed Feb 10, 2025
1 parent b7c61c7 commit a3c9afb
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,14 +138,14 @@ Or build locally:
Clone the project and install to your local maven repository using `gradle publishToMavenLocal` or `mvn install`, then declare it as a dependency:

```kotlin
implementation("com.esaulpaugh:headlong:12.3.4-SNAPSHOT")
implementation("com.esaulpaugh:headlong:13.0.0-SNAPSHOT")
```

```xml
<dependency>
<groupId>com.esaulpaugh</groupId>
<artifactId>headlong</artifactId>
<version>12.3.4-SNAPSHOT</version>
<version>13.0.0-SNAPSHOT</version>
</dependency>
```
Alternatively:
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = "com.esaulpaugh"
version = "12.3.4-SNAPSHOT"
version = "13.0.0-SNAPSHOT"

final String versionStr = getProject().getGradle().getGradleVersion()
final int gradleMajorVersion = Integer.parseUnsignedInt(versionStr.substring(0, versionStr.indexOf((int)".".charAt(0))))
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
//}
//
//group = "com.esaulpaugh"
//version = "12.3.4-SNAPSHOT"
//version = "13.0.0-SNAPSHOT"
//
//java {
// sourceCompatibility = JavaVersion.VERSION_1_8
Expand Down
2 changes: 1 addition & 1 deletion headlong.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
repository=/.m2/repository
gson_path=/com/google/code/gson/gson/2.12.0
project.name=headlong
project.version=12.3.4-SNAPSHOT
project.version=13.0.0-SNAPSHOT
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.esaulpaugh</groupId>
<artifactId>headlong</artifactId>
<version>12.3.4-SNAPSHOT</version>
<version>13.0.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>headlong</name>
Expand Down

0 comments on commit a3c9afb

Please sign in to comment.