Skip to content

Commit

Permalink
Version 3.21.1
Browse files Browse the repository at this point in the history
  • Loading branch information
webim committed Sep 12, 2018
1 parent deda262 commit 6d81673
Show file tree
Hide file tree
Showing 11 changed files with 16 additions and 17 deletions.
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.20.1):
- WebimClientLibrary (3.21.0):
- SQLite.swift

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

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.0</string>
<string>3.21.1</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
7 changes: 3 additions & 4 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.0'
pod 'WebimClientLibrary', :git => 'https://github.com/webim/webim-client-sdk-ios.git', :branch => 'master', :tag => '3.21.1'
```
`use_frameworks!` must be specified.

### Carthage

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

### Additional notes
Expand All @@ -38,8 +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
* New method `isReadByOperator()`.
* Send file parameters in HTTPBody.
* FatalErrorHandler reference 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.0'
s.version = '3.21.1'

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/WebimSessionImpl.swift
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,7 @@ final private class DestroyOnFatalErrorListener: InternalErrorListener {
final private class ErrorHandlerToInternalAdapter: InternalErrorListener {

// MARK: - Parameters
private weak var fatalErrorHandler: FatalErrorHandler?
private var fatalErrorHandler: FatalErrorHandler?

// MARK: - Initialization
init(fatalErrorHandler: FatalErrorHandler?) {
Expand Down
2 changes: 1 addition & 1 deletion WebimClientLibrary/Webim.swift
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public final class SessionBuilder {
private var accountName: String?
private var appVersion: String?
private var deviceToken: String?
private weak var fatalErrorHandler: FatalErrorHandler?
private var fatalErrorHandler: FatalErrorHandler?
private var localHistoryStoragingEnabled = true
private var location: String?
private var pageTitle: String?
Expand Down

0 comments on commit 6d81673

Please sign in to comment.