Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
17.10.0
17.10.1
2 changes: 1 addition & 1 deletion LeanCloud.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'LeanCloud'
s.version = '17.10.0'
s.version = '17.10.1'
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE' }
s.summary = 'LeanCloud Swift SDK'
s.homepage = 'https://leancloud.cn/'
Expand Down
4 changes: 2 additions & 2 deletions Sources/Foundation/Application.swift
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ public class LCApplication {
}
var _currentInstallation: LCInstallation?

var currentInstallationFileURL: URL? {
public var currentInstallationFileURL: URL? {
do {
return try self.localStorageContext?.fileURL(
place: .systemCaches,
Expand Down Expand Up @@ -263,7 +263,7 @@ public class LCApplication {
}
var _currentUser: LCUser?

var currentUserFileURL: URL? {
public var currentUserFileURL: URL? {
do {
return try self.localStorageContext?.fileURL(
place: .persistentData,
Expand Down
2 changes: 1 addition & 1 deletion Sources/Foundation/Version.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
import Foundation

public struct Version {
public static let versionString = "17.10.0"
public static let versionString = "17.10.1"
}