Skip to content

Commit

Permalink
Increase macOS deployment target to 10.10
Browse files Browse the repository at this point in the history
  • Loading branch information
jonreid committed Aug 11, 2017
1 parent 3512142 commit 023ef18
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Expand Up @@ -6,7 +6,11 @@ NEXT RELEASE
- Remove exposed instance variables that triggered warnings for `-Wobjc-interface-ivars`.

I doubt that it affects anyone, but converting public ivars to private properties does have the
potential to break backwards compatibility. Please notify me if you have any subclasses that complain.
potential to break backwards compatibility. Please notify me if you have any code that complains.

**Project changes:**

- Increase macOS deployment target to 10.10. (iOS was already at 8.0.)


Version 6.1.1
Expand Down
4 changes: 2 additions & 2 deletions Source/OCHamcrest.xcodeproj/project.pbxproj
Expand Up @@ -2806,7 +2806,7 @@
GCC_VERSION = "";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_DYLIB_INSTALL_NAME = "@rpath/$(EXECUTABLE_PATH)";
MACOSX_DEPLOYMENT_TARGET = 10.9;
MACOSX_DEPLOYMENT_TARGET = 10.10;
ONLY_ACTIVE_ARCH = YES;
WARNING_CFLAGS = (
"-Wobjc-interface-ivars",
Expand All @@ -2832,7 +2832,7 @@
GCC_VERSION = "";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_DYLIB_INSTALL_NAME = "@rpath/$(EXECUTABLE_PATH)";
MACOSX_DEPLOYMENT_TARGET = 10.9;
MACOSX_DEPLOYMENT_TARGET = 10.10;
WARNING_CFLAGS = (
"-Wobjc-interface-ivars",
"-Wsemicolon-before-method-body",
Expand Down

0 comments on commit 023ef18

Please sign in to comment.