Skip to content

Commit

Permalink
Updated object versions for Xcode 16.0b6
Browse files Browse the repository at this point in the history
  • Loading branch information
Brett-Best committed Aug 21, 2024
1 parent 4151dda commit 013bba2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/xcodeproj/constants.rb
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ module Constants

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

# @return [String] The last known Xcode version to Xcodeproj.
#
Expand Down Expand Up @@ -132,7 +132,7 @@ module Constants
# @return [Hash] The compatibility version string for different object versions.
#
COMPATIBILITY_VERSION_BY_OBJECT_VERSION = {
73 => 'Xcode 16.0',
77 => 'Xcode 16.0',
63 => 'Xcode 15.3',
60 => 'Xcode 15.0',
56 => 'Xcode 14.0',
Expand Down
2 changes: 1 addition & 1 deletion lib/xcodeproj/project/object/root_object.rb
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class PBXProject < AbstractObject

# @return [String] preferred project object version
#
attribute :preferred_project_object_version, String, '73'
attribute :preferred_project_object_version, String, '77'

# @return [PBXGroup] the group containing the references to products of
# the project.
Expand Down
2 changes: 1 addition & 1 deletion spec/project/object/root_object_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ module ProjectSpecs
end

it 'returns the preferred project object version' do
@root_object.preferred_project_object_version.should == '73'
@root_object.preferred_project_object_version.should == '77'
end

it 'returns the products group' do
Expand Down

0 comments on commit 013bba2

Please sign in to comment.