Skip to content

Commit

Permalink
Bump macOS deployment target to 13.3 (#198)
Browse files Browse the repository at this point in the history
  • Loading branch information
spacey-sooty committed May 4, 2024
1 parent e7a65a8 commit 8e6c56c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ java {

allprojects {
group = "edu.wpi.first"
version = "2024.7.1"
version = "2024.7.2"

if (project.hasProperty('publishVersion')) {
version = project.publishVersion
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public static class DefaultArguments {
public final List<String> linuxReleaseCompilerArgs = List.of("-O2");
public final List<String> linuxDebugCompilerArgs = List.of("-O0");

public final String macMinimumVersionArg = "-mmacosx-version-min=13";
public final String macMinimumVersionArg = "-mmacosx-version-min=13.3";

public final List<String> macCompilerArgs = List.of("-std=c++20", "-pedantic", "-fPIC", "-Wno-unused-parameter",
"-Wno-error=deprecated-enum-enum-conversion", "-Wno-missing-field-initializers",
Expand Down
2 changes: 1 addition & 1 deletion testing/cpp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import edu.wpi.first.toolchain.NativePlatforms

plugins {
id "cpp"
id "edu.wpi.first.NativeUtils" version "2024.7.1"
id "edu.wpi.first.NativeUtils" version "2024.7.2"
}

nativeUtils.addWpiNativeUtils()
Expand Down

0 comments on commit 8e6c56c

Please sign in to comment.