Skip to content

Commit

Permalink
Updated version to 3.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Anton Schukin committed Apr 9, 2018
1 parent b7f3cd2 commit 140f4f0
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### 3.3.1 (April 9, 2018)

#### Bugs
- Fix iOS 11 text rendering issue related to carriage return symbol #364 by [@0xpablo](https://github.com/0xpablo)

### 3.3.0 (March 10, 2018)

#### Features
Expand Down
4 changes: 2 additions & 2 deletions Chatto.podspec
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
Pod::Spec.new do |s|
s.name = "Chatto"
s.version = "3.3.0"
s.version = "3.3.1"
s.summary = "Chat framework in Swift"
s.description = <<-DESC
Lightweight chat framework to build Chat apps
DESC
s.homepage = "https://github.com/badoo/Chatto"
s.license = { :type => "MIT"}
s.platform = :ios, "8.0"
s.authors = { 'Diego Sanchez' => 'diego.sanchezr@gmail.com' }
s.authors = { 'Diego Sanchez' => 'diego.sanchezr@gmail.com', 'Anton Schukin' => 'a.p.schukin@gmail.com' }
s.source = { :git => "https://github.com/badoo/Chatto.git", :tag => s.version.to_s }
s.source_files = "Chatto/Source/**/*.{h,m,swift}"
s.public_header_files = "Chatto/Source/**/*.h"
Expand Down
2 changes: 1 addition & 1 deletion Chatto/Source/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>3.3.0</string>
<string>3.3.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
4 changes: 2 additions & 2 deletions ChattoAdditions.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "ChattoAdditions"
s.version = "3.3.0"
s.version = "3.3.1"
s.summary = "UI componentes for Chatto"
s.description = <<-DESC
Text and photo bubbles
Expand All @@ -9,7 +9,7 @@ Pod::Spec.new do |s|
s.homepage = "https://github.com/badoo/Chatto"
s.license = { :type => "MIT"}
s.platform = :ios, "8.0"
s.authors = { 'Diego Sanchez' => 'diego.sanchezr@gmail.com' }
s.authors = { 'Diego Sanchez' => 'diego.sanchezr@gmail.com', 'Anton Schukin' => 'a.p.schukin@gmail.com' }
s.source = { :git => "https://github.com/badoo/Chatto.git", :tag => s.version.to_s }
s.source_files = "ChattoAdditions/Source/**/*.{h,m,swift}"
s.public_header_files = "ChattoAdditions/Source/**/*.h"
Expand Down
2 changes: 1 addition & 1 deletion ChattoAdditions/Source/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>3.3.0</string>
<string>3.3.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ Check the [wiki!](https://github.com/badoo/Chatto/wiki)
2. Include the following in your `Podfile`:
```
# Swift 4
pod 'Chatto', '= 3.3.0'
pod 'ChattoAdditions', '= 3.3.0' # if you want to use the cells or the input component
pod 'Chatto', '= 3.3.1'
pod 'ChattoAdditions', '= 3.3.1' # if you want to use the cells or the input component
```
```
# Swift 3
Expand Down

0 comments on commit 140f4f0

Please sign in to comment.