From 2c313e365dacf8c24941a52fd4c92905575d37f8 Mon Sep 17 00:00:00 2001 From: Ed Reed Date: Tue, 27 Feb 2024 23:04:24 -0800 Subject: [PATCH] Switch branch to 2024.3.2 (#32) --- README.md | 4 ++-- nrgcommon/build.gradle | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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