Skip to content

Commit

Permalink
Bump v.1.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
buh committed Sep 20, 2019
1 parent a0ea806 commit da9cfb7
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions Sources/Core/Client/Client.swift
Original file line number Diff line number Diff line change
Expand Up @@ -105,13 +105,13 @@ public final class Client {
baseURL: BaseURL = Client.config.baseURL,
callbackQueue: DispatchQueue? = Client.config.callbackQueue,
stayConnectedInBackground: Bool = Client.config.stayConnectedInBackground,
database: Database? = Client.config.database,
// database: Database? = Client.config.database,
logOptions: ClientLogger.Options = Client.config.logOptions) {
self.apiKey = apiKey
self.baseURL = baseURL
self.callbackQueue = callbackQueue
self.stayConnectedInBackground = stayConnectedInBackground
self.database = database
self.database = nil
self.logOptions = logOptions

if logOptions == .all || logOptions == .requests || logOptions == .requestsHeaders {
Expand Down Expand Up @@ -164,13 +164,13 @@ extension Client {
baseURL: BaseURL = BaseURL(),
callbackQueue: DispatchQueue? = nil,
stayConnectedInBackground: Bool = true,
database: Database? = nil,
// database: Database? = nil,
logOptions: ClientLogger.Options = .none) {
self.apiKey = apiKey
self.baseURL = baseURL
self.callbackQueue = callbackQueue
self.stayConnectedInBackground = stayConnectedInBackground
self.database = database
self.database = nil
self.logOptions = logOptions
}
}
Expand Down
2 changes: 1 addition & 1 deletion StreamChat.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "StreamChat"
spec.version = "1.3.2"
spec.version = "1.3.4"
spec.summary = "Stream iOS Chat"
spec.description = "stream-chat-swift is the official Swift client and UI for Stream Chat, a service for building chat applications."

Expand Down
2 changes: 1 addition & 1 deletion StreamChat/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>1.3.2</string>
<string>1.3.4</string>
<key>CFBundleVersion</key>
<string>100</string>
</dict>
Expand Down
2 changes: 1 addition & 1 deletion StreamChatCore.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "StreamChatCore"
spec.version = "1.3.3"
spec.version = "1.3.4"
spec.summary = "Stream iOS Chat Core"
spec.description = "stream-chat-swift is the official Swift client for Stream Chat, a service for building chat applications."

Expand Down
2 changes: 1 addition & 1 deletion StreamChatCore/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>1.3.3</string>
<string>1.3.4</string>
<key>CFBundleVersion</key>
<string>100</string>
</dict>
Expand Down

0 comments on commit da9cfb7

Please sign in to comment.