diff --git a/CHANGELOG.md b/CHANGELOG.md index bf6af122..724dab33 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,6 @@ The changelog for `MessageKit`. Also see the [releases](https://github.com/Messa ## Future release ### Fixed -- `MessagesViewController` now smoothly scrolls messages off screen. [1531](https://github.com/MessageKit/MessageKit/issues/1531) & [1547](https://github.com/MessageKit/MessageKit/pull/1547) by [@mredig](https://github.com/mredig) ### Added @@ -13,6 +12,14 @@ The changelog for `MessageKit`. Also see the [releases](https://github.com/Messa ### Removed +## 3.5.1 + +### Fixed +- `MessagesViewController` now smoothly scrolls messages off screen. [1531](https://github.com/MessageKit/MessageKit/issues/1531) & [1547](https://github.com/MessageKit/MessageKit/pull/1547) by [@mredig](https://github.com/mredig) + +### Changed +- Bump `InputBarAccessoryView` + ## 3.5.0 ### Fixed diff --git a/Gemfile.lock b/Gemfile.lock index 1c3aa84d..bc5964d3 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -28,7 +28,7 @@ GEM danger rake (> 10) thor (~> 0.19) - faraday (0.17.3) + faraday (0.17.4) multipart-post (>= 1.2, < 3) faraday-http-cache (2.2.0) faraday (>= 0.8) diff --git a/MessageKit.podspec b/MessageKit.podspec index 2db40860..35fdfe81 100644 --- a/MessageKit.podspec +++ b/MessageKit.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'MessageKit' - s.version = '3.5.0' + s.version = '3.5.1' s.license = { :type => "MIT", :file => "LICENSE.md" } s.summary = 'An elegant messages UI library for iOS.' @@ -16,6 +16,6 @@ Pod::Spec.new do |s| s.ios.deployment_target = '12.0' s.ios.resource_bundle = { 'MessageKit' => 'Sources/Assets.xcassets' } - s.dependency 'InputBarAccessoryView', '~> 5.2.3' + s.dependency 'InputBarAccessoryView', '~> 5.3.0' end diff --git a/Package.swift b/Package.swift index 45eec47a..eaf578e2 100644 --- a/Package.swift +++ b/Package.swift @@ -32,7 +32,7 @@ let package = Package( .library(name: "MessageKit", targets: ["MessageKit"]), ], dependencies: [ - .package(url: "https://github.com/nathantannar4/InputBarAccessoryView", .upToNextMajor(from: "5.2.3")) + .package(url: "https://github.com/nathantannar4/InputBarAccessoryView", .upToNextMajor(from: "5.3.0")) ], targets: [ .target( diff --git a/Tests/MessageKitTests/Controllers Test/MessagesViewControllerTests.swift b/Tests/MessageKitTests/Controllers Test/MessagesViewControllerTests.swift index 9417eb26..49132706 100644 --- a/Tests/MessageKitTests/Controllers Test/MessagesViewControllerTests.swift +++ b/Tests/MessageKitTests/Controllers Test/MessagesViewControllerTests.swift @@ -232,7 +232,6 @@ final class MessagesViewControllerTests: XCTestCase { func testDefaultPropertyValues() { let controller = MessagesViewController() - XCTAssertFalse(controller.scrollsToBottomOnKeyboardBeginsEditing) XCTAssertTrue(controller.canBecomeFirstResponder) XCTAssertFalse(controller.shouldAutorotate) XCTAssertNotNil(controller.inputAccessoryView)