Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump macOS deployment target to 13 #197

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.0"
version = "2024.7.1"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Probably more appropriate to be 2024.8.0? @ThadHouse?

Copy link
Member Author

@calcmogul calcmogul Apr 28, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The last time we bumped the deployment target, Thad requested a native-utils subminor version bump. #174


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=12";
public final String macMinimumVersionArg = "-mmacosx-version-min=13";

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.0"
id "edu.wpi.first.NativeUtils" version "2024.7.1"
}

nativeUtils.addWpiNativeUtils()
Expand Down
Loading