diff --git a/CHANGELOG.md b/CHANGELOG.md index 44bef745..179f2b8e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ ##### Enhancements +* None. + +##### Bug Fixes + +* None. + + +## 1.25.0 (2024-08-07) + +##### Enhancements + * Print a warning instead of raising an exception when an unrecognized Xcode project object version is found. [Kaspik](https://github.com/Kaspik) [#953](https://github.com/CocoaPods/Xcodeproj/pull/953) diff --git a/Gemfile.lock b/Gemfile.lock index 1b35d96b..7a013833 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -14,7 +14,7 @@ GIT PATH remote: . specs: - xcodeproj (1.24.0) + xcodeproj (1.25.0) CFPropertyList (>= 2.3.3, < 4.0) atomos (~> 0.1.3) claide (>= 1.0.2, < 2.0) @@ -25,13 +25,16 @@ PATH GEM remote: https://rubygems.org/ specs: - CFPropertyList (3.0.6) + CFPropertyList (3.0.7) + base64 + nkf rexml addressable (2.8.0) public_suffix (>= 2.0.2, < 5.0) ast (2.3.0) atomos (0.1.3) bacon (1.2.0) + base64 (0.2.0) claide-plugins (0.9.2) cork nap @@ -76,6 +79,7 @@ GEM multipart-post (2.1.1) nanaimo (0.3.0) nap (1.1.0) + nkf (0.2.0) notify (0.5.2) octokit (4.21.0) faraday (>= 0.9) @@ -94,7 +98,7 @@ GEM ffi (>= 0.5.0) rb-kqueue (0.2.4) ffi (>= 0.5.0) - rexml (3.3.2) + rexml (3.3.4) strscan rubocop (0.47.1) parser (>= 2.3.3.1, < 3.0) diff --git a/lib/xcodeproj/gem_version.rb b/lib/xcodeproj/gem_version.rb index cedaee04..70220f5a 100644 --- a/lib/xcodeproj/gem_version.rb +++ b/lib/xcodeproj/gem_version.rb @@ -1,5 +1,5 @@ module Xcodeproj # The version of the xcodeproj gem. # - VERSION = '1.24.0'.freeze unless defined? Xcodeproj::VERSION + VERSION = '1.25.0'.freeze unless defined? Xcodeproj::VERSION end