Skip to content

Commit

Permalink
Version 3.21.2
Browse files Browse the repository at this point in the history
  • Loading branch information
webim committed Sep 17, 2018
1 parent 6d81673 commit 60d389b
Show file tree
Hide file tree
Showing 12 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion Documentation/Index.md
Original file line number Diff line number Diff line change
Expand Up @@ -817,7 +817,7 @@ Protocol that is to be adopted to track if current [Operator](#operator-protocol

<h3 id ="changed-operator-previous-operator-to-new-operator">changed(operator:to:) method</h3>

Called when [Operator](#operator-protocol) object of the current chat changed. New one value can be `nil` (if an operator leaved the chat).
Called when [Operator](#operator-protocol) object of the current chat changed. Values can be `nil` (if an operator leaved the chat or there was no operator before).

[Go to table of contents](#table-of-contents)

Expand Down
4 changes: 2 additions & 2 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ PODS:
- SQLite.swift (0.11.5):
- SQLite.swift/standard (= 0.11.5)
- SQLite.swift/standard (0.11.5)
- WebimClientLibrary (3.21.0):
- WebimClientLibrary (3.21.2):
- SQLite.swift

DEPENDENCIES:
Expand Down Expand Up @@ -44,7 +44,7 @@ SPEC CHECKSUMS:
SlackTextViewController: b854e62c1c156336bc4fd409c6ca79b5773e8f9d
SnapKit: a42d492c16e80209130a3379f73596c3454b7694
SQLite.swift: 6e5356850bb1791459f8c16d6ee9195b28714a2e
WebimClientLibrary: 0d77b0617e63818b96dab9eba9c2f41b59d66e14
WebimClientLibrary: 15d8419d64556547ea93921089bf31f21e16c7bb

PODFILE CHECKSUM: 3ae813f4c3db6d1830eddfcf1600cb0f21e44002

Expand Down
4 changes: 2 additions & 2 deletions Example/Pods/Local Podspecs/WebimClientLibrary.podspec.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Example/Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion 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.21.1</string>
<string>3.21.2</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ This library provides [_Webim SDK_ for _iOS_](https://webim.ru/integration/mobil

Add following line for your target in your **Podfile**:
```
pod 'WebimClientLibrary', :git => 'https://github.com/webim/webim-client-sdk-ios.git', :branch => 'master', :tag => '3.21.1'
pod 'WebimClientLibrary', :git => 'https://github.com/webim/webim-client-sdk-ios.git', :branch => 'master', :tag => '3.21.2'
```
`use_frameworks!` must be specified.

### Carthage

Add following line to your **Cartfile**:
```
github "webim/webim-client-sdk-ios" ~> 3.21.1
github "webim/webim-client-sdk-ios" ~> 3.21.2
```

### Additional notes
Expand All @@ -38,7 +38,7 @@ Trying to integrate _WebimClientLibrary_ into your _Objective-C_ code? Try out o
Previous _Objective-C_ version (version numbers 2.x.x) can be reached from **version2** branch.

## Release notes
* FatalErrorHandler reference fixed.
* `CurrentOperatorChangeListener` bug fixed.

## Example

Expand Down
2 changes: 1 addition & 1 deletion WebimClientLibrary.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = 'WebimClientLibrary'
s.version = '3.21.1'
s.version = '3.21.2'

s.author = { 'Webim.ru Ltd.' => '[email protected]' }
s.homepage = 'https://webim.ru/integration/mobile-sdk/ios-sdk-howto/'
Expand Down
2 changes: 1 addition & 1 deletion WebimClientLibrary/Implementation/MessageStreamImpl.swift
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ final class MessageStreamImpl {
let previousOperator = currentOperator
currentOperator = newOperator

currentOperatorChangeListener?.changed(operator: previousOperator!,
currentOperatorChangeListener?.changed(operator: previousOperator,
to: newOperator)
}

Expand Down
2 changes: 1 addition & 1 deletion WebimClientLibrary/MessageStream.swift
Original file line number Diff line number Diff line change
Expand Up @@ -804,7 +804,7 @@ public protocol CurrentOperatorChangeListener: class {
- copyright:
2017 Webim
*/
func changed(operator previousOperator: Operator,
func changed(operator previousOperator: Operator?,
to newOperator: Operator?)

}
Expand Down

0 comments on commit 60d389b

Please sign in to comment.