Skip to content

Commit ba6fe9d

Browse files
committed
Bump Xcode version constants for Xcode 12.5.
1 parent 2a1f19a commit ba6fe9d

File tree

9 files changed

+13
-7
lines changed

9 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
##### Enhancements
66

7+
* Bump Xcode version constants for Xcode 12.5.
8+
[Dimitris Koutsogiorgas](https://github.com/dnkoutso)
9+
[#XXX](https://github.com/CocoaPods/Xcodeproj/pull/XXX)
10+
711
* Add `platform_filters` support for `PBXTargetDependency`.
812
[Max Langer](https://github.com/mangerlahn)
913
[#853](https://github.com/CocoaPods/Xcodeproj/pull/853)

lib/xcodeproj/constants.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ module Constants
3636

3737
# @return [String] The last known Xcode version to Xcodeproj.
3838
#
39-
LAST_UPGRADE_CHECK = '1240'
39+
LAST_UPGRADE_CHECK = '1250'
4040

4141
# @return [String] The last known Xcode version to Xcodeproj.
4242
#
43-
LAST_SWIFT_UPGRADE_CHECK = '1240'
43+
LAST_SWIFT_UPGRADE_CHECK = '1250'
4444

4545
# @return [String] The version of `.xcscheme` files supported by Xcodeproj
4646
#

spec/fixtures/CommonBuildSettings/configs/Swift_tvOS_Native/Swift_tvOS_Native_base.xcconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
ASSETCATALOG_COMPILER_APPICON_NAME = App Icon & Top Shelf Image
22
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor
3+
DEVELOPMENT_ASSET_PATHS = ___PACKAGENAMEPREVIEWCONTENT:quoteIfNeeded___
34
ENABLE_PREVIEWS = YES
45
INFOPLIST_FILE = ___PACKAGENAME___/Info.plist
56
LD_RUNPATH_SEARCH_PATHS = $(inherited) @executable_path/Frameworks

spec/fixtures/CommonBuildSettings/configs/Swift_watchOS_Native Extension/Swift_watchOS_Native Extension_base.xcconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
ASSETCATALOG_COMPILER_COMPLICATION_NAME = Complication
2+
DEVELOPMENT_ASSET_PATHS = ___PACKAGENAMEPREVIEWCONTENT:quoteIfNeeded___
23
ENABLE_PREVIEWS = YES
34
INFOPLIST_FILE = ___PACKAGENAME___/Info.plist
45
LD_RUNPATH_SEARCH_PATHS = $(inherited) @executable_path/Frameworks @executable_path/../../Frameworks

spec/fixtures/Sample Project/Cocoa Application.xcodeproj/xcshareddata/xcschemes/iOS application and static library.xcscheme

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "1240"
3+
LastUpgradeVersion = "1250"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"

spec/fixtures/Sample Project/Cocoa Application.xcodeproj/xcshareddata/xcschemes/iOS application.xcscheme

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "1240"
3+
LastUpgradeVersion = "1250"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"

spec/fixtures/Sample Project/Cocoa Application.xcodeproj/xcshareddata/xcschemes/iOS applicationTests Set Build Target For Running.xcscheme

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "1240"
3+
LastUpgradeVersion = "1250"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"

spec/fixtures/Sample Project/Cocoa Application.xcodeproj/xcshareddata/xcschemes/iOS applicationTests.xcscheme

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "1240"
3+
LastUpgradeVersion = "1250"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"

spec/scheme_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ module ProjectSpecs
230230
expected = <<-XML.gsub(/^ {8}/, '')
231231
<?xml version="1.0" encoding="UTF-8"?>
232232
<Scheme
233-
LastUpgradeVersion = "1240"
233+
LastUpgradeVersion = "1250"
234234
version = "1.3">
235235
<BuildAction
236236
parallelizeBuildables = "YES"

0 commit comments

Comments
 (0)