diff --git a/Chatto.podspec b/Chatto.podspec
index a63da6bc0..f2b5e3a5e 100644
--- a/Chatto.podspec
+++ b/Chatto.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Chatto"
- s.version = "3.4.0"
+ s.version = "3.5.0"
s.summary = "Chat framework in Swift"
s.description = <<-DESC
Lightweight chat framework to build Chat apps
@@ -13,5 +13,5 @@ Pod::Spec.new do |s|
s.source_files = "Chatto/Source/**/*.{h,m,swift}"
s.public_header_files = "Chatto/Source/**/*.h"
s.requires_arc = true
- s.swift_version = '4.2'
+ s.swift_version = '5.0'
end
diff --git a/Chatto/Source/Info.plist b/Chatto/Source/Info.plist
index a8f98d8fe..2bf762f69 100644
--- a/Chatto/Source/Info.plist
+++ b/Chatto/Source/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 3.4.0
+ 3.5.0
CFBundleSignature
????
CFBundleVersion
diff --git a/ChattoAdditions.podspec b/ChattoAdditions.podspec
index dfe81473d..fe0a81f89 100644
--- a/ChattoAdditions.podspec
+++ b/ChattoAdditions.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "ChattoAdditions"
- s.version = "3.4.0"
+ s.version = "3.5.0"
s.summary = "UI componentes for Chatto"
s.description = <<-DESC
Text and photo bubbles
@@ -14,7 +14,7 @@ Pod::Spec.new do |s|
s.source_files = "ChattoAdditions/Source/**/*.{h,m,swift}"
s.public_header_files = "ChattoAdditions/Source/**/*.h"
s.requires_arc = true
- s.swift_version = '4.2'
+ s.swift_version = '5.0'
s.resources = ["ChattoAdditions/Source/**/*.xib", "ChattoAdditions/Source/**/*.storyboard", "ChattoAdditions/Source/**/*.xcassets"]
s.dependency 'Chatto'
end
diff --git a/ChattoAdditions/Source/Info.plist b/ChattoAdditions/Source/Info.plist
index a8f98d8fe..2bf762f69 100644
--- a/ChattoAdditions/Source/Info.plist
+++ b/ChattoAdditions/Source/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 3.4.0
+ 3.5.0
CFBundleSignature
????
CFBundleVersion
diff --git a/README.md b/README.md
index 3ce34a2e0..d9284e448 100644
--- a/README.md
+++ b/README.md
@@ -29,6 +29,11 @@ Check the [wiki!](https://github.com/badoo/Chatto/wiki)
1. Make sure `use_frameworks!` is added to your `Podfile`.
2. Include the following in your `Podfile`:
+ ```
+ # Swift 5
+ pod 'Chatto', '= 3.5.0'
+ pod 'ChattoAdditions', '= 3.5.0' # if you want to use the cells or the input component
+ ```
```
# Swift 4.2
pod 'Chatto', '= 3.4.0'
@@ -60,7 +65,7 @@ If you like living on the bleeding edge, you can use the `master` branch with:
If you’re using [Carthage](https://github.com/Carthage/Carthage#if-youre-building-for-ios-tvos-or-watchos), simply add Chatto to your Cartfile:
```
-# Swift 4
+# Swift 5
github "badoo/Chatto"
```
```