Skip to content

Commit a82a2e3

Browse files
authored
Bump version and rename fakeplatform flag (#252)
1 parent 3edcba0 commit a82a2e3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ToolchainPlugin/src/main/java/edu/wpi/first/toolchain/ToolchainRules.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ void addDefaultPlatforms(final ExtensionContainer extContainer, final PlatformCo
192192
winarm64.architecture("arm64");
193193
}
194194

195-
if (ext.getProject().hasProperty("onlyfakeplatform")) {
195+
if (ext.getProject().hasProperty("usefakeplatform")) {
196196
NativePlatform fakePlatform = platforms.maybeCreate("fakeplatform", NativePlatform.class);
197197
fakePlatform.architecture("noarch");
198198
}

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ java {
1313

1414
allprojects {
1515
group = "edu.wpi.first"
16-
version = "2025.12.2"
16+
version = "2025.12.3"
1717

1818
if (project.hasProperty('publishVersion')) {
1919
version = project.publishVersion

testing/cpp/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import edu.wpi.first.nativeutils.vendordeps.WPIVendorDepsPlugin
33

44
plugins {
55
id "cpp"
6-
id "edu.wpi.first.NativeUtils" version "2025.12.2"
6+
id "edu.wpi.first.NativeUtils" version "2025.12.3"
77
}
88

99
nativeUtils.addWpiNativeUtils()

0 commit comments

Comments
 (0)