Skip to content

Commit

Permalink
Prepare 2023.2.0 release (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
edreed authored Jan 18, 2023
1 parent d624d60 commit 8f34bdb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ The table below lists the published versions of the library and the WPILib relea

| Version | Git Tag/Branch | Required WPILib Version |
|-------------------|----------------|-------------------------|
| 2023.1.0-SNAPSHOT | main | 2023.2.1 |
| 2023.2.0-SNAPSHOT | main | 2023.2.1 |
| 2023.2.0 | v2023.2.0 | 2023.2.1 |
| 2022.1.0 | v2022.1.0 | 2022.4.1 |

## How to use the library in a Robot project
Expand Down Expand Up @@ -40,10 +41,10 @@ Finally, add the NRG Common Java Library as a dependency in your `build.gradle`

```gradle
dependencies {
implementation 'com.nrg948:nrgcommon:2022.1.0'
implementation 'com.nrg948:nrgcommon:2023.2.0'
}
```

> **NOTE:** If you want the latest build from `main`, use `'com.nrg948:nrgcommon:2023.1.0-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:2023.2.0-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.
2 changes: 1 addition & 1 deletion nrgcommon/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ plugins {
}

group = 'com.nrg948'
version = '2023.1.0' + (Boolean.valueOf(System.getProperty("release")) ? "" : "-SNAPSHOT")
version = '2023.2.0' + (Boolean.valueOf(System.getProperty("release")) ? "" : "-SNAPSHOT")

sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
Expand Down

0 comments on commit 8f34bdb

Please sign in to comment.