diff --git a/CHANGES.md b/CHANGES.md index dd1dd9adc3..7d361382ee 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,10 @@ +## Changes in 0.27.2 (2023-09-12) + +🐛 Bugfixes + +- Fix | QR code verification failing due to incorrect encoding padding ([#1816](https://github.com/vector-im/element-ios/issues/1816)) + + ## Changes in 0.27.1 (2023-08-29) ✨ Features diff --git a/MatrixSDK.podspec b/MatrixSDK.podspec index ba946ca0b6..971a267ecf 100644 --- a/MatrixSDK.podspec +++ b/MatrixSDK.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "MatrixSDK" - s.version = "0.27.1" + s.version = "0.27.2" 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 d9c7e3a76c..56bbdf50ee 100644 --- a/MatrixSDK/MatrixSDKVersion.m +++ b/MatrixSDK/MatrixSDKVersion.m @@ -16,4 +16,4 @@ #import -NSString *const MatrixSDKVersion = @"0.27.1"; +NSString *const MatrixSDKVersion = @"0.27.2"; diff --git a/changelog.d/1816.bugfix b/changelog.d/1816.bugfix deleted file mode 100644 index ffab1b7a01..0000000000 --- a/changelog.d/1816.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix | QR code verification failing due to incorrect encoding padding \ No newline at end of file