Skip to content

Commit b9b29a5

Browse files
committed
Updates wpilib to 2025.2.1
1 parent 8c52c4f commit b9b29a5

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The table below lists the published versions of the library and the WPILib relea
88

99
| Version | Git Tag/Branch | Required WPILib Version |
1010
|-------------------|----------------|-------------------------|
11-
| 2025.1.1-SNAPSHOT | main | 2025.1.1 |
11+
| 2025.2.1-SNAPSHOT | main | 2025.2.1 |
1212
| 2025.1.0 | v2025.1.0 | 2025.1.1 |
1313
| 2024.3.1 | v2024.3.1 | 2024.3.1 |
1414
| 2023.4.0 | v2023.4.0 | 2023.4.2 |
@@ -48,7 +48,7 @@ dependencies {
4848
}
4949
```
5050

51-
> **NOTE:** If you want the latest build from `main`, use `'com.nrg948:nrgcommon:2025.1.1-SNAPSHOT'`. There may be breaking changes and it certainly will not be as stable, so use with caution.
51+
> **NOTE:** If you want the latest build from `main`, use `'com.nrg948:nrgcommon:2025.2.1-SNAPSHOT'`. There may be breaking changes and it certainly will not be as stable, so use with caution.
5252
5353
On the next build, the library will be downloaded from GitHub packages and installed in the Gradle build cache.
5454

nrgcommon/build.gradle

+7-7
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ plugins {
2727
id 'java-library'
2828

2929
id 'maven-publish'
30-
id "com.diffplug.spotless" version "6.25.0"
30+
id "com.diffplug.spotless" version "7.0.1"
3131
}
3232

3333
spotless {
@@ -38,7 +38,7 @@ spotless {
3838
}
3939

4040
group = 'com.nrg948'
41-
version = '2025.1.1' + (Boolean.valueOf(System.getProperty("release")) ? "" : "-SNAPSHOT")
41+
version = '2025.2.1' + (Boolean.valueOf(System.getProperty("release")) ? "" : "-SNAPSHOT")
4242

4343
sourceCompatibility = JavaVersion.VERSION_17
4444
targetCompatibility = JavaVersion.VERSION_17
@@ -56,14 +56,14 @@ repositories {
5656
dependencies {
5757
testImplementation 'org.junit.jupiter:junit-jupiter:5.7.2'
5858

59-
api "edu.wpi.first.wpilibj:wpilibj-java:2025.1.1"
59+
api "edu.wpi.first.wpilibj:wpilibj-java:2025.2.1"
6060
api "org.javatuples:javatuples:1.2"
6161

62-
implementation "edu.wpi.first.cscore:cscore-java:2025.1.1"
63-
implementation "edu.wpi.first.ntcore:ntcore-java:2025.1.1"
64-
implementation "edu.wpi.first.wpiutil:wpiutil-java:2025.1.1"
62+
implementation "edu.wpi.first.cscore:cscore-java:2025.2.1"
63+
implementation "edu.wpi.first.ntcore:ntcore-java:2025.2.1"
64+
implementation "edu.wpi.first.wpiutil:wpiutil-java:2025.2.1"
6565
implementation 'org.reflections:reflections:0.10.2'
66-
implementation 'edu.wpi.first.wpilibNewCommands:wpilibNewCommands-java:2025.1.1'
66+
implementation 'edu.wpi.first.wpilibNewCommands:wpilibNewCommands-java:2025.2.1'
6767
implementation 'org.dom4j:dom4j:2.1.3'
6868
}
6969

0 commit comments

Comments
 (0)