Skip to content

Commit 013bba2

Browse files
committed
Updated object versions for Xcode 16.0b6
1 parent 4151dda commit 013bba2

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

lib/xcodeproj/constants.rb

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

3737
# @return [String] The last known object version to Xcodeproj.
3838
#
39-
LAST_KNOWN_OBJECT_VERSION = 73
39+
LAST_KNOWN_OBJECT_VERSION = 77
4040

4141
# @return [String] The last known Xcode version to Xcodeproj.
4242
#
@@ -132,7 +132,7 @@ module Constants
132132
# @return [Hash] The compatibility version string for different object versions.
133133
#
134134
COMPATIBILITY_VERSION_BY_OBJECT_VERSION = {
135-
73 => 'Xcode 16.0',
135+
77 => 'Xcode 16.0',
136136
63 => 'Xcode 15.3',
137137
60 => 'Xcode 15.0',
138138
56 => 'Xcode 14.0',

lib/xcodeproj/project/object/root_object.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class PBXProject < AbstractObject
5555

5656
# @return [String] preferred project object version
5757
#
58-
attribute :preferred_project_object_version, String, '73'
58+
attribute :preferred_project_object_version, String, '77'
5959

6060
# @return [PBXGroup] the group containing the references to products of
6161
# the project.

spec/project/object/root_object_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ module ProjectSpecs
4444
end
4545

4646
it 'returns the preferred project object version' do
47-
@root_object.preferred_project_object_version.should == '73'
47+
@root_object.preferred_project_object_version.should == '77'
4848
end
4949

5050
it 'returns the products group' do

0 commit comments

Comments
 (0)