From aa89744c95593030249c8f7b6a3eae02232fab77 Mon Sep 17 00:00:00 2001 From: Prateek Machiraju Date: Mon, 28 Dec 2020 13:34:19 -0500 Subject: [PATCH] Update OtherVersions.md to include wpimath info (#2983) This also updates occurrences of 2020 to 2021. --- OtherVersions.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/OtherVersions.md b/OtherVersions.md index a335f55ac0..fe73fa8e40 100644 --- a/OtherVersions.md +++ b/OtherVersions.md @@ -13,6 +13,7 @@ In order to build a project using a development build, find the build.gradle fil ```groovy wpi.maven.useDevelopment = true wpi.wpilibVersion = 'YEAR.+' +wpi.wpimathVersion = 'YEAR.+ ``` The top of your ``build.gradle`` file should now look similar to the code below. Ignore any differences in versions. @@ -25,7 +26,8 @@ plugins { } wpi.maven.useDevelopment = true -wpi.wpilibVersion = '2020.+' +wpi.wpilibVersion = '2021.+' +wpi.wpimathVersion = '2021.+' ``` C++ @@ -37,7 +39,8 @@ plugins { } wpi.maven.useDevelopment = true -wpi.wpilibVersion = '2020.+' +wpi.wpilibVersion = '2021.+' +wpi.wpimathVersion = '2021.+' ``` ## Local Build @@ -53,6 +56,7 @@ plugins { wpi.maven.useFrcMavenLocalDevelopment = true wpi.wpilibVersion = 'YEAR.424242.+' +wpi.wpimathVersion = 'YEAR.424242.+' ``` C++ @@ -65,4 +69,5 @@ plugins { wpi.maven.useFrcMavenLocalDevelopment = true wpi.wpilibVersion = 'YEAR.424242.+' +wpi.wpimathVersion = 'YEAR.424242.+' ```