Skip to content

Commit 71a788e

Browse files
authored
[docs] Update references to 2026 (#8534)
1 parent f395954 commit 71a788e

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

DevelopmentBuilds.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This article contains instructions on building projects using a development buil
1313

1414
Development builds are the per-commit build hosted every time a commit is pushed to the [allwpilib](https://github.com/wpilibsuite/allwpilib/) repository. These builds are then hosted on [artifactory](https://frcmaven.wpi.edu/artifactory/webapp/#/home).
1515

16-
To build a project using a development build, find the build.gradle file and open it. Then, add the following code below the plugin section and replace YEAR with the year of the development version. It is also necessary to use a 2025 GradleRIO version, ie `2025.1.1-beta-1`
16+
To build a project using a development build, find the build.gradle file and open it. Then, add the following code below the plugin section and replace YEAR with the year of the development version. It is also necessary to use a 2026 GradleRIO version, ie `2026.1.1`
1717

1818
```groovy
1919
wpi.maven.useLocal = false
@@ -28,27 +28,27 @@ Java
2828
```groovy
2929
plugins {
3030
id "java"
31-
id "edu.wpi.first.GradleRIO" version "2025.1.1-beta-1"
31+
id "edu.wpi.first.GradleRIO" version "2026.1.1"
3232
}
3333
3434
wpi.maven.useLocal = false
3535
wpi.maven.useDevelopment = true
36-
wpi.versions.wpilibVersion = '2025.+'
37-
wpi.versions.wpimathVersion = '2025.+'
36+
wpi.versions.wpilibVersion = '2026.+'
37+
wpi.versions.wpimathVersion = '2026.+'
3838
```
3939

4040
C++
4141
```groovy
4242
plugins {
4343
id "cpp"
4444
id "google-test-test-suite"
45-
id "edu.wpi.first.GradleRIO" version "2025.1.1-beta-1"
45+
id "edu.wpi.first.GradleRIO" version "2026.1.1"
4646
}
4747
4848
wpi.maven.useLocal = false
4949
wpi.maven.useDevelopment = true
50-
wpi.versions.wpilibVersion = '2025.+'
51-
wpi.versions.wpimathVersion = '2025.+'
50+
wpi.versions.wpilibVersion = '2026.+'
51+
wpi.versions.wpimathVersion = '2026.+'
5252
```
5353

5454
### Development Build Documentation
@@ -64,7 +64,7 @@ Java
6464
```groovy
6565
plugins {
6666
id "java"
67-
id "edu.wpi.first.GradleRIO" version "2025.1.1-beta-1"
67+
id "edu.wpi.first.GradleRIO" version "2026.1.1"
6868
}
6969
7070
wpi.maven.useLocal = false
@@ -78,7 +78,7 @@ C++
7878
plugins {
7979
id "cpp"
8080
id "google-test-test-suite"
81-
id "edu.wpi.first.GradleRIO" version "2025.1.1-beta-1"
81+
id "edu.wpi.first.GradleRIO" version "2026.1.1"
8282
}
8383
8484
wpi.maven.useLocal = false

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2009-2025 FIRST and other WPILib contributors
1+
Copyright (c) 2009-2026 FIRST and other WPILib contributors
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without

0 commit comments

Comments
 (0)