diff --git a/CHANGELOG.md b/CHANGELOG.md
index 80b6e904..1c6b7047 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,7 +2,7 @@ Change Log
==========
-1.1.1
+1.2.0
-----------------------
### Enhancements:
@@ -12,6 +12,7 @@ Change Log
### Changes:
* Updated error messages when attempting to directly process static libraries.
+* Xcode 7 is no longer supported.
1.1.0
diff --git a/Makefile b/Makefile
index 219df503..b566936b 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@
# See LICENSE.txt for licensing information
PROJECT_NAME=PPiOS-Rename
-NUMERIC_VERSION=1.1.1
+NUMERIC_VERSION=1.2.0
VERSION=v$(NUMERIC_VERSION)
PROGRAM_NAME=ppios-rename
diff --git a/README.md b/README.md
index 17f2aa3a..5851491a 100644
--- a/README.md
+++ b/README.md
@@ -47,7 +47,7 @@ Supported Platforms
*PPiOS-Rename* supports apps developed for:
-* iOS 10, iOS 11
+* iOS 9, iOS 10, iOS 11
* iPhone, iPod touch, and iPad
* ARM 32-bit, ARM 64-bit, and x86 Simulator
@@ -116,7 +116,7 @@ Once you are comfortable using *PPiOS-Rename*, it can be easier to use if you in
10. Expand the phase, and where it says `Type a script or ...`, paste the following script, adjusting for the correct path:
- PATH="$PATH:$HOME/Downloads/PPiOS-Rename-v1.1.1"
+ PATH="$PATH:$HOME/Downloads/PPiOS-Rename-v1.2.0"
[[ "$SDKROOT" == *iPhoneSimulator*.sdk* ]] && sdk="$SDKROOT"
test -z "$sdk" && sdk="$CORRESPONDING_SIMULATOR_SDK_DIR"
test -z "$sdk" && sdk="$CORRESPONDING_SIMULATOR_PLATFORM_DIR/Developer/SDKs/iPhoneSimulator${SDK_VERSION}.sdk"
@@ -139,7 +139,7 @@ Once you are comfortable using *PPiOS-Rename*, it can be easier to use if you in
17. Paste the following script, again adjusting for the correct path:
- PATH="$PATH:$HOME/Downloads/PPiOS-Rename-v1.1.1"
+ PATH="$PATH:$HOME/Downloads/PPiOS-Rename-v1.2.0"
ppios-rename --obfuscate-sources
18. Edit the scheme (or add one) for this new target, renaming the scheme to `Apply Renaming to `.
@@ -523,7 +523,7 @@ The procedure is as follows:
6. Replace the analyze script (`Analyze Binary` run script phase) with the following to exclude the public types from renaming:
- PATH="$PATH:$HOME/Downloads/PPiOS-Rename-v1.1.1"
+ PATH="$PATH:$HOME/Downloads/PPiOS-Rename-v1.2.0"
[[ "$SDKROOT" == *iPhoneSimulator*.sdk* ]] && sdk="$SDKROOT"
test -z "$sdk" && sdk="$CORRESPONDING_SIMULATOR_SDK_DIR"
test -z "$sdk" && sdk="$CORRESPONDING_SIMULATOR_PLATFORM_DIR/Developer/SDKs/iPhoneSimulator${SDK_VERSION}.sdk"
@@ -540,7 +540,7 @@ The procedure is as follows:
1. Follow instructions [13-16 in `Project Setup` above](#configureRenaming), applying them to the static library target.
2. The call to `ppios-rename` needs to reference the `symbols.map` file from the WrappingApp project, using the `--symbols-map` option. Use this script for the new Run Script phase (adjusting the path as necessary):
- PATH="$PATH:$HOME/Downloads/PPiOS-Rename-v1.1.1"
+ PATH="$PATH:$HOME/Downloads/PPiOS-Rename-v1.2.0"
ppios-rename --obfuscate-sources --symbols-map ../WrappingApp/symbols.map
3. Follow instruction [18 in `Project Setup` above](#renameApplyRenamingScheme).