Skip to content

Commit

Permalink
[Constants] Bump last known versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
neonichu committed Mar 24, 2015
1 parent fb48711 commit 6ad1fdf
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions lib/xcodeproj/constants.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,23 @@ module Xcodeproj
module Constants
# @return [String] The last known iOS SDK (stable).
#
LAST_KNOWN_IOS_SDK = '7.1'
LAST_KNOWN_IOS_SDK = '8.2'

# @return [String] The last known OS X SDK (stable).
#
LAST_KNOWN_OSX_SDK = '10.9'
LAST_KNOWN_OSX_SDK = '10.10'

# @return [String] The last known archive version to Xcodeproj.
#
LAST_KNOWN_ARCHIVE_VERSION = 1

# @return [String] The last known object version to Xcodeproj.
#
LAST_KNOWN_OBJECT_VERSION = 46
LAST_KNOWN_OBJECT_VERSION = 47

# @return [String] The last known object version to Xcodeproj.
#
LAST_UPGRADE_CHECK = '0510'
LAST_UPGRADE_CHECK = '0630'

# @return [Hash] The all the known ISAs grouped by superclass.
#
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 = "0510"
LastUpgradeVersion = "0630"
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 = "0510"
LastUpgradeVersion = "0630"
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 = "0510"
LastUpgradeVersion = "0630"
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 = "0510"
LastUpgradeVersion = "0630"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
2 changes: 1 addition & 1 deletion spec/project/object/native_target_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ module ProjectSpecs
it 'adds a file reference for a system framework, in a dedicated subgroup of the Frameworks group' do
@target.add_system_framework('QuartzCore')
file = @project['Frameworks/iOS'].files.first
file.path.should == 'Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/QuartzCore.framework'
file.path.should == 'Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS8.2.sdk/System/Library/Frameworks/QuartzCore.framework'
file.source_tree.should == 'DEVELOPER_DIR'
end

Expand Down
2 changes: 1 addition & 1 deletion spec/scheme_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ module ProjectSpecs
@scheme.to_s[0..190].should == <<-DOC.strip_heredoc
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "0510"
LastUpgradeVersion = "0630"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down

0 comments on commit 6ad1fdf

Please sign in to comment.