diff --git a/CHANGES.md b/CHANGES.md index 21cc3f8e7b..1121ef1302 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,14 @@ +## Changes in 0.27.13 (2024-08-20) + +🙌 Improvements + +- Add UTC timestamps to console log lines. ([#7472](https://github.com/vector-im/element-ios/issues/7472)) + +📄 Documentation + +- Drop the requirement for "real" or "legally identifiable" name in order to contribute, in line with updated Foundation policy. ([#1875](https://github.com/matrix-org/matrix-ios-sdk/pull/1875)) + + ## Changes in 0.27.12 (2024-07-23) 🙌 Improvements diff --git a/Gemfile b/Gemfile index 2aa841dabd..10e63f4303 100644 --- a/Gemfile +++ b/Gemfile @@ -1,6 +1,6 @@ source "https://rubygems.org" gem "fastlane" -gem "cocoapods", '~>1.14.3' +gem "cocoapods", '~>1.15.2' gem "xcode-install" gem "slather" diff --git a/Gemfile.lock b/Gemfile.lock index 317baa44e3..d531aee810 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -41,10 +41,10 @@ GEM bigdecimal (3.1.4) claide (1.1.0) clamp (1.3.2) - cocoapods (1.14.3) + cocoapods (1.15.2) addressable (~> 2.8) claide (>= 1.0.2, < 2.0) - cocoapods-core (= 1.14.3) + cocoapods-core (= 1.15.2) cocoapods-deintegrate (>= 1.0.3, < 2.0) cocoapods-downloader (>= 2.1, < 3.0) cocoapods-plugins (>= 1.0.0, < 2.0) @@ -59,7 +59,7 @@ GEM nap (~> 1.0) ruby-macho (>= 2.3.0, < 3.0) xcodeproj (>= 1.23.0, < 2.0) - cocoapods-core (1.14.3) + cocoapods-core (1.15.2) activesupport (>= 5.0, < 8) addressable (~> 2.8) algoliasearch (~> 1.0) @@ -165,7 +165,7 @@ GEM xcodeproj (>= 1.13.0, < 2.0.0) xcpretty (~> 0.3.0) xcpretty-travis-formatter (>= 0.0.3) - ffi (1.16.3) + ffi (1.17.0) fourflusher (2.3.1) fuzzy_match (2.0.4) gh_inspector (1.1.3) @@ -296,7 +296,7 @@ PLATFORMS ruby DEPENDENCIES - cocoapods (~> 1.14.3) + cocoapods (~> 1.15.2) fastlane slather xcode-install diff --git a/MatrixSDK.podspec b/MatrixSDK.podspec index 8f4f9387ec..3846cacff1 100644 --- a/MatrixSDK.podspec +++ b/MatrixSDK.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "MatrixSDK" - s.version = "0.27.12" + s.version = "0.27.13" s.summary = "The iOS SDK to build apps compatible with Matrix (https://www.matrix.org)" s.description = <<-DESC diff --git a/MatrixSDK/MatrixSDKVersion.m b/MatrixSDK/MatrixSDKVersion.m index 9def75d184..c48d07bcaa 100644 --- a/MatrixSDK/MatrixSDKVersion.m +++ b/MatrixSDK/MatrixSDKVersion.m @@ -16,4 +16,4 @@ #import -NSString *const MatrixSDKVersion = @"0.27.12"; +NSString *const MatrixSDKVersion = @"0.27.13"; diff --git a/changelog.d/7472.change b/changelog.d/7472.change deleted file mode 100644 index 9872b968a0..0000000000 --- a/changelog.d/7472.change +++ /dev/null @@ -1 +0,0 @@ -Add UTC timestamps to console log lines. diff --git a/changelog.d/pr-1875.doc b/changelog.d/pr-1875.doc deleted file mode 100644 index 521eead789..0000000000 --- a/changelog.d/pr-1875.doc +++ /dev/null @@ -1 +0,0 @@ -Drop the requirement for "real" or "legally identifiable" name in order to contribute, in line with updated Foundation policy. \ No newline at end of file