diff --git a/.github/workflows/PR.yml b/.github/workflows/PR.yml index af749b53..02773988 100644 --- a/.github/workflows/PR.yml +++ b/.github/workflows/PR.yml @@ -10,8 +10,8 @@ jobs: steps: # actions/checkout@v2 but we use the SHA1 because tags can be re-written in git - uses: actions/checkout@722adc63f1aa60a57ec37892e133b1d319cae598 - - name: Select Xcode 11.4 - run: sudo xcode-select -s /Applications/Xcode_11.4.app + - name: Select Xcode 11.5 + run: sudo xcode-select -s /Applications/Xcode_11.5.app - name: Run Bluepill tests run: ./scripts/bluepill.sh instance_tests @@ -22,8 +22,8 @@ jobs: steps: # actions/checkout@v2 but we use the SHA1 because tags can be re-written in git - uses: actions/checkout@722adc63f1aa60a57ec37892e133b1d319cae598 - - name: Select Xcode 11.4 - run: sudo xcode-select -s /Applications/Xcode_11.4.app + - name: Select Xcode 11.5 + run: sudo xcode-select -s /Applications/Xcode_11.5.app - name: Run BP tests run: ./scripts/bluepill.sh runner_tests - name: Build and Package diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index df6ba175..71041c09 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -15,8 +15,8 @@ jobs: steps: # actions/checkout@v2 but we use the sha because tags can be rewritten in git - uses: actions/checkout@722adc63f1aa60a57ec37892e133b1d319cae598 - - name: Select Xcode 11.4 - run: sudo xcode-select -s /Applications/Xcode_11.4.app + - name: Select Xcode 11.5 + run: sudo xcode-select -s /Applications/Xcode_11.5.app - name: Run Bluepill tests run: ./scripts/bluepill.sh instance_tests @@ -27,8 +27,8 @@ jobs: steps: # actions/checkout@v2 but we use the sha because tags can be rewritten in git - uses: actions/checkout@722adc63f1aa60a57ec37892e133b1d319cae598 - - name: Select Xcode 11.4 - run: sudo xcode-select -s /Applications/Xcode_11.4.app + - name: Select Xcode 11.5 + run: sudo xcode-select -s /Applications/Xcode_11.5.app - name: Run BP tests run: ./scripts/bluepill.sh runner_tests - name: Build and Package diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e490a9f0..bb998dda 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,8 +13,8 @@ jobs: steps: # actions/checkout@v2 but we use the sha because tags can be rewritten in git - uses: actions/checkout@722adc63f1aa60a57ec37892e133b1d319cae598 - - name: Select Xcode 11.4 - run: sudo xcode-select -s /Applications/Xcode_11.4.app + - name: Select Xcode 11.5 + run: sudo xcode-select -s /Applications/Xcode_11.5.app - name: Run Bluepill tests run: ./scripts/bluepill.sh instance_tests @@ -28,8 +28,8 @@ jobs: - name: Report event trigger data run: | echo "Event ${{ github.event_name }}, ref: ${{ github.ref }}" - - name: Select Xcode 11.4 - run: sudo xcode-select -s /Applications/Xcode_11.4.app + - name: Select Xcode 11.5 + run: sudo xcode-select -s /Applications/Xcode_11.5.app - name: Run Bluepill tests run: ./scripts/bluepill.sh runner_tests - name: Build Bluepill diff --git a/README.md b/README.md index ec1f46eb..291d8589 100644 --- a/README.md +++ b/README.md @@ -118,7 +118,7 @@ Here is a list of Bluepill exit codes. If a Bluepill execution has multiple exit ## Requirements -Bluepill officially supports **Xcode 11.4**. If you're looking for old Xcode support, please check out the below branches: +Bluepill officially supports **Xcode 11.5**. If you're looking for old Xcode support, please checkout the following branches: * [Xcode-8](https://github.com/linkedin/bluepill/tree/xcode8) * [Xcode-9.0](https://github.com/linkedin/bluepill/tree/xcode-9.0) @@ -134,6 +134,7 @@ Bluepill officially supports **Xcode 11.4**. If you're looking for old Xcode sup * [Xcode-11.1](https://github.com/linkedin/bluepill/tree/xcode-11.1) * [Xcode-11.2](https://github.com/linkedin/bluepill/tree/xcode-11.2) * [Xcode-11.3](https://github.com/linkedin/bluepill/tree/xcode-11.3) +* [Xcode-11.4](https://github.com/linkedin/bluepill/tree/xcode-11.4) If you're looking for newer Xcode version support, try using Bluepill with `unsafe-skip-xcode-version-check` flag but make sure your app is tested with it and the underlying risks are understand. diff --git a/bp/src/BPConstants.h b/bp/src/BPConstants.h index 932e6ad9..17f7b78e 100644 --- a/bp/src/BPConstants.h +++ b/bp/src/BPConstants.h @@ -10,9 +10,9 @@ #import #pragma mark - Version Constants -#define BP_DEFAULT_XCODE_VERSION "11.4" -#define BP_DEFAULT_RUNTIME "iOS 13.4" -#define BP_DEFAULT_BASE_SDK "13.4" +#define BP_DEFAULT_XCODE_VERSION "11.5" +#define BP_DEFAULT_RUNTIME "iOS 13.5" +#define BP_DEFAULT_BASE_SDK "13.5" #define BP_DEFAULT_DEVICE_TYPE "iPhone 8"