Skip to content

Commit

Permalink
Update WPILib to 2024.3.1 (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
edreed authored Feb 28, 2024
1 parent fe4b4b7 commit 04dd550
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ The table below lists the published versions of the library and the WPILib relea

| Version | Git Tag/Branch | Required WPILib Version |
|-------------------|----------------|-------------------------|
| 2024.1.2-SNAPSHOT | main | 2024.1.1 |
| 2023.4.1-SNAPSHOT | main | 2023.4.2 |
| 2024.3.1-SNAPSHOT | main | 2024.3.1 |
| 2023.4.0 | v2023.4.0 | 2023.4.2 |
| 2023.2.0 | v2023.2.0 | 2023.2.1 |
| 2022.1.0 | v2022.1.0 | 2022.4.1 |
Expand Down Expand Up @@ -43,11 +42,11 @@ Finally, add the NRG Common Java Library as a dependency in your `build.gradle`

```gradle
dependencies {
implementation 'com.nrg948:nrgcommon:2024.1.1'
implementation 'com.nrg948:nrgcommon:2023.4.1'
}
```

> **NOTE:** If you want the latest build from `main`, use `'com.nrg948:nrgcommon:2024.1.2-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.1-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.

Expand Down
12 changes: 6 additions & 6 deletions nrgcommon/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ spotless {
}

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

sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
Expand All @@ -56,14 +56,14 @@ repositories {
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter:5.7.2'

api "edu.wpi.first.wpilibj:wpilibj-java:2024.1.1"
api "edu.wpi.first.wpilibj:wpilibj-java:2024.3.1"
api "org.javatuples:javatuples:1.2"

implementation "edu.wpi.first.cscore:cscore-java:2024.1.1"
implementation "edu.wpi.first.ntcore:ntcore-java:2024.1.1"
implementation "edu.wpi.first.wpiutil:wpiutil-java:2024.1.1"
implementation "edu.wpi.first.cscore:cscore-java:2024.3.1"
implementation "edu.wpi.first.ntcore:ntcore-java:2024.3.1"
implementation "edu.wpi.first.wpiutil:wpiutil-java:2024.3.1"
implementation 'org.reflections:reflections:0.10.2'
implementation 'edu.wpi.first.wpilibNewCommands:wpilibNewCommands-java:2024.1.1'
implementation 'edu.wpi.first.wpilibNewCommands:wpilibNewCommands-java:2024.3.1'
implementation 'org.dom4j:dom4j:2.1.3'
}

Expand Down

0 comments on commit 04dd550

Please sign in to comment.