Skip to content

Commit 534113c

Browse files
authored
Update for 2023 FRC kickoff (REVrobotics#2)
* Update wpilib * Update REVLib.json
1 parent 3e2de59 commit 534113c

File tree

4 files changed

+19
-19
lines changed

4 files changed

+19
-19
lines changed

.wpilib/wpilib_preferences.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"enableCppIntellisense": false,
33
"currentLanguage": "java",
4-
"projectYear": "2023Beta",
4+
"projectYear": "2023",
55
"teamNumber": 2714
66
}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ Note that this is meant to be used with a drivetrain composed of four MAXSwerve
66

77
## Prerequisites
88

9-
* SPARK MAX Firmware v1.6.0 - Adds features that are required for swerve
10-
* REVLib v2023.1.0 - Includes APIs for the new firmware features
9+
* SPARK MAX Firmware v1.6.1 - Adds features that are required for swerve
10+
* REVLib v2023.1.1 - Includes APIs for the new firmware features
1111

1212
## Configuration
1313

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id "java"
3-
id "edu.wpi.first.GradleRIO" version "2023.1.1-beta-4"
3+
id "edu.wpi.first.GradleRIO" version "2023.1.1"
44
}
55

66
sourceCompatibility = JavaVersion.VERSION_11
@@ -65,9 +65,9 @@ dependencies {
6565
nativeRelease wpi.java.vendor.jniRelease(wpi.platforms.desktop)
6666
simulationRelease wpi.sim.enableRelease()
6767

68-
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.4.2'
69-
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.4.2'
70-
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.4.2'
68+
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
69+
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.8.2'
70+
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
7171
}
7272

7373
test {

vendordeps/REVLib.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
11
{
22
"fileName": "REVLib.json",
33
"name": "REVLib",
4-
"version": "2023.1.0",
4+
"version": "2023.1.1",
55
"uuid": "3f48eb8c-50fe-43a6-9cb7-44c86353c4cb",
66
"mavenUrls": [
77
"https://maven.revrobotics.com/"
88
],
9-
"jsonUrl": "https://software-metadata.revrobotics.com/REVLib.json",
9+
"jsonUrl": "https://software-metadata.revrobotics.com/REVLib-2023.json",
1010
"javaDependencies": [
1111
{
1212
"groupId": "com.revrobotics.frc",
1313
"artifactId": "REVLib-java",
14-
"version": "2023.1.0"
14+
"version": "2023.1.1"
1515
}
1616
],
1717
"jniDependencies": [
1818
{
1919
"groupId": "com.revrobotics.frc",
2020
"artifactId": "REVLib-driver",
21-
"version": "2023.1.0",
21+
"version": "2023.1.1",
2222
"skipInvalidPlatforms": true,
2323
"isJar": false,
2424
"validPlatforms": [
2525
"windowsx86-64",
2626
"windowsx86",
27-
"linuxaarch64bionic",
27+
"linuxarm64",
2828
"linuxx86-64",
2929
"linuxathena",
30-
"linuxraspbian",
30+
"linuxarm32",
3131
"osxuniversal"
3232
]
3333
}
@@ -36,36 +36,36 @@
3636
{
3737
"groupId": "com.revrobotics.frc",
3838
"artifactId": "REVLib-cpp",
39-
"version": "2023.1.0",
39+
"version": "2023.1.1",
4040
"libName": "REVLib",
4141
"headerClassifier": "headers",
4242
"sharedLibrary": false,
4343
"skipInvalidPlatforms": true,
4444
"binaryPlatforms": [
4545
"windowsx86-64",
4646
"windowsx86",
47-
"linuxaarch64bionic",
47+
"linuxarm64",
4848
"linuxx86-64",
4949
"linuxathena",
50-
"linuxraspbian",
50+
"linuxarm32",
5151
"osxuniversal"
5252
]
5353
},
5454
{
5555
"groupId": "com.revrobotics.frc",
5656
"artifactId": "REVLib-driver",
57-
"version": "2023.1.0",
57+
"version": "2023.1.1",
5858
"libName": "REVLibDriver",
5959
"headerClassifier": "headers",
6060
"sharedLibrary": false,
6161
"skipInvalidPlatforms": true,
6262
"binaryPlatforms": [
6363
"windowsx86-64",
6464
"windowsx86",
65-
"linuxaarch64bionic",
65+
"linuxarm64",
6666
"linuxx86-64",
6767
"linuxathena",
68-
"linuxraspbian",
68+
"linuxarm32",
6969
"osxuniversal"
7070
]
7171
}

0 commit comments

Comments
 (0)