diff --git a/README.md b/README.md index 4998084..986e1d6 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ The table below lists the published versions of the library and the WPILib relea | Version | Git Tag/Branch | Required WPILib Version | |-------------------|----------------|-------------------------| -| 2024.3.1-SNAPSHOT | main | 2024.3.1 | +| 2024.3.2-SNAPSHOT | main | 2024.3.1 | | 2024.3.1 | v2024.3.1 | 2024.3.1 | | 2023.4.0 | v2023.4.0 | 2023.4.2 | | 2023.2.0 | v2023.2.0 | 2023.2.1 | @@ -47,7 +47,7 @@ dependencies { } ``` -> **NOTE:** If you want the latest build from `main`, use `'com.nrg948:nrgcommon:2024.3.1-SNAPSHOT'`. There may be breaking changes and it certainly will not be as stable, so use with caution. +> **NOTE:** If you want the latest build from `main`, use `'com.nrg948:nrgcommon:2024.3.2-SNAPSHOT'`. There may be breaking changes and it certainly will not be as stable, so use with caution. On the next build, the library will be downloaded from GitHub packages and installed in the Gradle build cache. diff --git a/nrgcommon/build.gradle b/nrgcommon/build.gradle index de58423..52ec890 100644 --- a/nrgcommon/build.gradle +++ b/nrgcommon/build.gradle @@ -38,7 +38,7 @@ spotless { } group = 'com.nrg948' -version = '2024.3.1' + (Boolean.valueOf(System.getProperty("release")) ? "" : "-SNAPSHOT") +version = '2024.3.2' + (Boolean.valueOf(System.getProperty("release")) ? "" : "-SNAPSHOT") sourceCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17