Skip to content

Commit 09c66d2

Browse files
committed
Update version and change log
1 parent 593adb8 commit 09c66d2

File tree

9 files changed

+21
-12
lines changed

9 files changed

+21
-12
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## v2.1.10
2+
3+
* Disable checkpoint fullsync in apple platform, it will significantly reduce disk IO
4+
* Add main db file protection to windows
5+
* Reduce memory cost of data compression
6+
* Reduce handle usage of data backup
7+
* Support to detect schema corruption
8+
* Fix some known bugs and compile issues
9+
110
## v2.1.9
211

312
* Add lite mode (Set journal mode and synchronous flag to OFF)

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ let package = Package(
1515
.library(name: "WCDBSwiftDynamic", type: .dynamic, targets: ["WCDBSwift"]),
1616
],
1717
dependencies: [
18-
.package(url: "https://github.com/Tencent/sqlcipher", .exactItem("1.4.6"))
18+
.package(url: "https://github.com/Tencent/sqlcipher", .exactItem("1.4.7"))
1919
],
2020
targets: [
2121
.target(

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# WCDB
22

33
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/Tencent/wcdb/pulls)
4-
[![Release Version](https://img.shields.io/badge/Release-2.1.9-brightgreen.svg)](https://github.com/Tencent/wcdb/releases)
4+
[![Release Version](https://img.shields.io/badge/Release-2.1.10-brightgreen.svg)](https://github.com/Tencent/wcdb/releases)
55
[![Language](https://img.shields.io/badge/Language-%20C++%20%7C%20Java%20%7C%20Kotlin%20%7C%20Swift%20%7C%20Objc-brightgreen.svg)](https://github.com/Tencent/wcdb/wiki)[![Platform](https://img.shields.io/badge/Platform-%20iOS%20%7C%20macOS%20%7C%20Android%20%7C%20Windows%20%7C%20Linux%20%7C%20OpenHarmony-brightgreen.svg)](https://github.com/Tencent/wcdb/wiki)
66

77
中文版本请参看[这里][wcdb-wiki]

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.1.9
1+
2.1.10

WCDB.cpp.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# pod trunk push WCDB.cpp.podspec --verbose --skip-import-validation --allow-warnings
55
Pod::Spec.new do |wcdb|
66
wcdb.name = "WCDB.cpp"
7-
wcdb.version = "2.1.9"
7+
wcdb.version = "2.1.10"
88
wcdb.summary = "WCDB is a cross-platform database framework developed by WeChat."
99
wcdb.description = <<-DESC
1010
The WeChat Database, for C++. (If you want to use WCDB for Swift or Objective-C, see the "WCDB.swift" pod or "WCDB.objc" pod. If you want to use WCDB for C++/Objc/Swift in one project, see the "WCDB" pod)
@@ -97,5 +97,5 @@ Pod::Spec.new do |wcdb|
9797
"VALID_ARCHS[sdk=watchos*]" => "arm64_32 armv7k",
9898
}
9999
wcdb.header_dir = "WCDB"
100-
wcdb.dependency 'WCDBOptimizedSQLCipher', '1.4.6'
100+
wcdb.dependency 'WCDBOptimizedSQLCipher', '1.4.7'
101101
end

WCDB.objc.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# pod trunk push WCDB.objc.podspec --verbose --skip-import-validation --allow-warnings
55
Pod::Spec.new do |wcdb|
66
wcdb.name = "WCDB.objc"
7-
wcdb.version = "2.1.9"
7+
wcdb.version = "2.1.10"
88
wcdb.summary = "WCDB is a cross-platform database framework developed by WeChat."
99
wcdb.description = <<-DESC
1010
The WeChat Database, for Objective-C. (If you want to use WCDB for Swift or C++, see the "WCDB.swift" pod or "WCDB.cpp" pod. If you want to use WCDB for C++/Objc/Swift in one project, see the "WCDB" pod)
@@ -128,5 +128,5 @@ Pod::Spec.new do |wcdb|
128128
"OTHER_CPLUSPLUSFLAGS" => "-fvisibility-inlines-hidden",
129129
}
130130
wcdb.header_dir = "WCDB"
131-
wcdb.dependency 'WCDBOptimizedSQLCipher', '1.4.6'
131+
wcdb.dependency 'WCDBOptimizedSQLCipher', '1.4.7'
132132
end

WCDB.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# pod trunk push --verbose --allow-warnings WCDB.podspec --skip-import-validation
55
Pod::Spec.new do |wcdb|
66
wcdb.name = "WCDB"
7-
wcdb.version = "2.1.9"
7+
wcdb.version = "2.1.10"
88
wcdb.summary = "WCDB is a cross-platform database framework developed by WeChat."
99
wcdb.description = <<-DESC
1010
The WeChat Database, for Objc/Swift/C++. (If you want to use WCDB for Objc/Swift/C++ separately, see the "WCDB.objc", "WCDB.swift" or "WCDB.cpp" pod.)
@@ -154,5 +154,5 @@ Pod::Spec.new do |wcdb|
154154
}
155155
wcdb.header_dir = "WCDB"
156156
wcdb.swift_versions = '5'
157-
wcdb.dependency 'WCDBOptimizedSQLCipher', '1.4.6'
157+
wcdb.dependency 'WCDBOptimizedSQLCipher', '1.4.7'
158158
end

WCDB.swift.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# pod trunk push --verbose --allow-warnings WCDB.swift.podspec
55
Pod::Spec.new do |wcdb|
66
wcdb.name = "WCDB.swift"
7-
wcdb.version = "2.1.9"
7+
wcdb.version = "2.1.10"
88
wcdb.summary = "WCDB is a cross-platform database framework developed by WeChat."
99
wcdb.description = <<-DESC
1010
The WeChat Database, for Swift. (If you want to use WCDB for Objective-C or C++, see the "WCDB.objc" pod or "WCDB.cpp" pod. If you want to use WCDB for C++/Objc/Swift in one project, see the "WCDB" pod)
@@ -80,5 +80,5 @@ Pod::Spec.new do |wcdb|
8080
"OTHER_SWIFT_FLAGS" => "-no-verify-emitted-module-interface",
8181
}
8282
wcdb.swift_versions = '5'
83-
wcdb.dependency 'WCDBOptimizedSQLCipher', '1.4.6'
83+
wcdb.dependency 'WCDBOptimizedSQLCipher', '1.4.7'
8484
end

sqlcipher

0 commit comments

Comments
 (0)