Skip to content

Commit 771ffe9

Browse files
committed
Update to 3.7.0 for XCode 13
1 parent 10575f8 commit 771ffe9

4 files changed

Lines changed: 14 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@ The changelog for `MessageKit`. Also see the [releases](https://github.com/Messa
1212

1313
### Removed
1414

15+
## 3.7.0
16+
17+
### Fixed
18+
- Updated InputBarAccessoryView to 5.4.0 with XCode 13 support
19+
- Fixed Example project loading MessageKit through SPM
20+
- Make sure MessageKit works on XCode 13 correctly
21+
1522
## 3.6.1
1623

1724
### Added

MessageKit.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'MessageKit'
3-
s.version = '3.6.1'
3+
s.version = '3.7.0'
44
s.license = { :type => "MIT", :file => "LICENSE.md" }
55

66
s.summary = 'An elegant messages UI library for iOS.'
@@ -16,6 +16,6 @@ Pod::Spec.new do |s|
1616
s.ios.deployment_target = '12.0'
1717
s.ios.resources = 'Sources/Assets.xcassets'
1818

19-
s.dependency 'InputBarAccessoryView', '~> 5.3.1'
19+
s.dependency 'InputBarAccessoryView', '~> 5.4.0'
2020

2121
end

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ let package = Package(
3232
.library(name: "MessageKit", targets: ["MessageKit"]),
3333
],
3434
dependencies: [
35-
.package(url: "https://github.com/nathantannar4/InputBarAccessoryView", .upToNextMajor(from: "5.3.1"))
35+
.package(url: "https://github.com/nathantannar4/InputBarAccessoryView", .upToNextMajor(from: "5.4.0"))
3636
],
3737
targets: [
3838
.target(

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@
1717
<img src="https://cocoapod-badges.herokuapp.com/v/MessageKit/badge.png" alt="CocoaPods">
1818
</a>
1919
<a href="https://developer.apple.com/xcode">
20-
<img src="https://img.shields.io/badge/Xcode-12-blue.svg" alt="Xcode">
20+
<img src="https://img.shields.io/badge/Xcode-12-green.svg" alt="Xcode">
21+
</a>
22+
<a href="https://developer.apple.com/xcode">
23+
<img src="https://img.shields.io/badge/Xcode-13-blue.svg" alt="Xcode">
2124
</a>
2225
<a href="https://opensource.org/licenses/MIT">
2326
<img src="https://img.shields.io/badge/License-MIT-red.svg" alt="MIT">

0 commit comments

Comments
 (0)