Skip to content

Commit

Permalink
Bump Xcode version to match Xcode 13
Browse files Browse the repository at this point in the history
This avoids warnings from Xcode 13 asking to upgrade to the latest settings.
  • Loading branch information
efirestone committed Sep 27, 2021
1 parent 8e87918 commit 1b4a3f6
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
fail-fast: false
matrix:
ruby: [2.6]
os: [ubuntu-16.04]
os: [ubuntu-18.04]

name: Lint
runs-on: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Specs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
fail-fast: false
matrix:
ruby: ['2.1.9', '2.2', '2.3', '2.4', '2.5', '2.6', '2.7', '3.0']
os: [ubuntu-16.04]
os: [ubuntu-18.04]
include:
- os: macos-10.15
ruby: system
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

##### Enhancements

* Bump Xcode version to match Xcode 13
[Eric Firestone](https://github.com/efirestone)
[#857](https://github.com/CocoaPods/Xcodeproj/pull/857)

* Bump Xcode version constants for Xcode 12.5.
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
[#856](https://github.com/CocoaPods/Xcodeproj/pull/856)
Expand Down
4 changes: 2 additions & 2 deletions lib/xcodeproj/constants.rb
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ module Constants

# @return [String] The last known Xcode version to Xcodeproj.
#
LAST_UPGRADE_CHECK = '1250'
LAST_UPGRADE_CHECK = '1300'

# @return [String] The last known Xcode version to Xcodeproj.
#
LAST_SWIFT_UPGRADE_CHECK = '1250'
LAST_SWIFT_UPGRADE_CHECK = '1300'

# @return [String] The version of `.xcscheme` files supported by Xcodeproj
#
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1250"
LastUpgradeVersion = "1300"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1250"
LastUpgradeVersion = "1300"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1250"
LastUpgradeVersion = "1300"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1250"
LastUpgradeVersion = "1300"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
2 changes: 1 addition & 1 deletion spec/scheme_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ module ProjectSpecs
expected = <<-XML.gsub(/^ {8}/, '')
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1250"
LastUpgradeVersion = "1300"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down

0 comments on commit 1b4a3f6

Please sign in to comment.