Skip to content

Commit 5b0c894

Browse files
authored
Merge pull request #161 from zapcannon87/IM
release: 16.0.0-beta.3
2 parents 36ee73a + 19e2a89 commit 5b0c894

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

LeanCloud.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'LeanCloud'
3-
s.version = '16.0.0-beta.2'
3+
s.version = '16.0.0-beta.3'
44
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE' }
55
s.summary = 'LeanCloud Swift SDK'
66
s.homepage = 'https://leancloud.cn/'

Sources/Foundation/LeanCloud.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
import Foundation
1010

11-
public let version = "16.0.0-beta.2"
11+
public let version = "16.0.0-beta.3"
1212

1313
/// `version` is a common word, so use `__LeanCloudVersion` to wrap it to avoid conflict.
1414
var __LeanCloudVersion: String {

Sources/IM/IMConversationQuery.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ public class IMConversationQuery: LCQuery {
2323
}
2424

2525
/// the conversations in query result will not contain members info.
26-
static let notContainMembers = Options(rawValue: 1 << 0)
26+
public static let notContainMembers = Options(rawValue: 1 << 0)
2727

2828
/// the conversations in query result will contain the last message if the last message exist.
29-
static let containLastMessage = Options(rawValue: 1 << 1)
29+
public static let containLastMessage = Options(rawValue: 1 << 1)
3030
}
3131

3232
/// @see `Options`, default is nil.

0 commit comments

Comments
 (0)