Skip to content

Commit da9cfb7

Browse files
committed
Bump v.1.3.4
1 parent a0ea806 commit da9cfb7

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

Sources/Core/Client/Client.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,13 +105,13 @@ public final class Client {
105105
baseURL: BaseURL = Client.config.baseURL,
106106
callbackQueue: DispatchQueue? = Client.config.callbackQueue,
107107
stayConnectedInBackground: Bool = Client.config.stayConnectedInBackground,
108-
database: Database? = Client.config.database,
108+
// database: Database? = Client.config.database,
109109
logOptions: ClientLogger.Options = Client.config.logOptions) {
110110
self.apiKey = apiKey
111111
self.baseURL = baseURL
112112
self.callbackQueue = callbackQueue
113113
self.stayConnectedInBackground = stayConnectedInBackground
114-
self.database = database
114+
self.database = nil
115115
self.logOptions = logOptions
116116

117117
if logOptions == .all || logOptions == .requests || logOptions == .requestsHeaders {
@@ -164,13 +164,13 @@ extension Client {
164164
baseURL: BaseURL = BaseURL(),
165165
callbackQueue: DispatchQueue? = nil,
166166
stayConnectedInBackground: Bool = true,
167-
database: Database? = nil,
167+
// database: Database? = nil,
168168
logOptions: ClientLogger.Options = .none) {
169169
self.apiKey = apiKey
170170
self.baseURL = baseURL
171171
self.callbackQueue = callbackQueue
172172
self.stayConnectedInBackground = stayConnectedInBackground
173-
self.database = database
173+
self.database = nil
174174
self.logOptions = logOptions
175175
}
176176
}

StreamChat.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = "StreamChat"
3-
spec.version = "1.3.2"
3+
spec.version = "1.3.4"
44
spec.summary = "Stream iOS Chat"
55
spec.description = "stream-chat-swift is the official Swift client and UI for Stream Chat, a service for building chat applications."
66

StreamChat/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.3.2</string>
18+
<string>1.3.4</string>
1919
<key>CFBundleVersion</key>
2020
<string>100</string>
2121
</dict>

StreamChatCore.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = "StreamChatCore"
3-
spec.version = "1.3.3"
3+
spec.version = "1.3.4"
44
spec.summary = "Stream iOS Chat Core"
55
spec.description = "stream-chat-swift is the official Swift client for Stream Chat, a service for building chat applications."
66

StreamChatCore/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.3.3</string>
18+
<string>1.3.4</string>
1919
<key>CFBundleVersion</key>
2020
<string>100</string>
2121
</dict>

0 commit comments

Comments
 (0)