From 6d48e4c01e8dd4a55a3e136ab50fbd911829959d Mon Sep 17 00:00:00 2001 From: qiuwenchen Date: Wed, 18 Sep 2024 16:53:10 +0800 Subject: [PATCH] Update version and change log --- CHANGELOG.md | 5 +++++ README.md | 2 +- VERSION | 2 +- WCDB.cpp.podspec | 4 ++-- WCDB.objc.podspec | 4 ++-- WCDB.podspec | 4 ++-- WCDB.swift.podspec | 4 ++-- sqlcipher | 2 +- 8 files changed, 16 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 13dff93ef..d62925b4d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## v2.1.8 + +* Increase migration speed +* Fix compile error of SwiftPM in Xcode 16 + ## v2.1.7 * WCDB C++ supports OpenHarmony OS diff --git a/README.md b/README.md index a2ea9431f..d8ddab026 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # WCDB [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/Tencent/wcdb/pulls) -[![Release Version](https://img.shields.io/badge/Release-2.1.7-brightgreen.svg)](https://github.com/Tencent/wcdb/releases) +[![Release Version](https://img.shields.io/badge/Release-2.1.8-brightgreen.svg)](https://github.com/Tencent/wcdb/releases) [![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) 中文版本请参看[这里][wcdb-wiki] diff --git a/VERSION b/VERSION index 9671f9a9b..b370e25da 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.1.7 \ No newline at end of file +2.1.8 \ No newline at end of file diff --git a/WCDB.cpp.podspec b/WCDB.cpp.podspec index 116eccd75..5afcb5231 100644 --- a/WCDB.cpp.podspec +++ b/WCDB.cpp.podspec @@ -4,7 +4,7 @@ # pod trunk push WCDB.cpp.podspec --verbose --skip-import-validation --allow-warnings Pod::Spec.new do |wcdb| wcdb.name = "WCDB.cpp" - wcdb.version = "2.1.7" + wcdb.version = "2.1.8" wcdb.summary = "WCDB is a cross-platform database framework developed by WeChat." wcdb.description = <<-DESC 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| "VALID_ARCHS[sdk=watchos*]" => "arm64_32 armv7k", } wcdb.header_dir = "WCDB" - wcdb.dependency 'WCDBOptimizedSQLCipher', '1.4.5' + wcdb.dependency 'WCDBOptimizedSQLCipher', '1.4.6' end diff --git a/WCDB.objc.podspec b/WCDB.objc.podspec index 5c9f3c595..79397d68a 100644 --- a/WCDB.objc.podspec +++ b/WCDB.objc.podspec @@ -4,7 +4,7 @@ # pod trunk push WCDB.objc.podspec --verbose --skip-import-validation --allow-warnings Pod::Spec.new do |wcdb| wcdb.name = "WCDB.objc" - wcdb.version = "2.1.7" + wcdb.version = "2.1.8" wcdb.summary = "WCDB is a cross-platform database framework developed by WeChat." wcdb.description = <<-DESC 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| "OTHER_CPLUSPLUSFLAGS" => "-fvisibility-inlines-hidden", } wcdb.header_dir = "WCDB" - wcdb.dependency 'WCDBOptimizedSQLCipher', '1.4.5' + wcdb.dependency 'WCDBOptimizedSQLCipher', '1.4.6' end diff --git a/WCDB.podspec b/WCDB.podspec index b121e1d8a..e86aa1b67 100644 --- a/WCDB.podspec +++ b/WCDB.podspec @@ -4,7 +4,7 @@ # pod trunk push --verbose --allow-warnings WCDB.podspec --skip-import-validation Pod::Spec.new do |wcdb| wcdb.name = "WCDB" - wcdb.version = "2.1.7" + wcdb.version = "2.1.8" wcdb.summary = "WCDB is a cross-platform database framework developed by WeChat." wcdb.description = <<-DESC 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| } wcdb.header_dir = "WCDB" wcdb.swift_versions = '5' - wcdb.dependency 'WCDBOptimizedSQLCipher', '1.4.5' + wcdb.dependency 'WCDBOptimizedSQLCipher', '1.4.6' end diff --git a/WCDB.swift.podspec b/WCDB.swift.podspec index b8abdfad5..71df21c85 100644 --- a/WCDB.swift.podspec +++ b/WCDB.swift.podspec @@ -4,7 +4,7 @@ # pod trunk push --verbose --allow-warnings WCDB.swift.podspec Pod::Spec.new do |wcdb| wcdb.name = "WCDB.swift" - wcdb.version = "2.1.7" + wcdb.version = "2.1.8" wcdb.summary = "WCDB is a cross-platform database framework developed by WeChat." wcdb.description = <<-DESC 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| "OTHER_SWIFT_FLAGS" => "-no-verify-emitted-module-interface", } wcdb.swift_versions = '5' - wcdb.dependency 'WCDBOptimizedSQLCipher', '1.4.5' + wcdb.dependency 'WCDBOptimizedSQLCipher', '1.4.6' end diff --git a/sqlcipher b/sqlcipher index 65edd76ea..12c73015f 160000 --- a/sqlcipher +++ b/sqlcipher @@ -1 +1 @@ -Subproject commit 65edd76ea727b31d3265227dc435245d21ff371f +Subproject commit 12c73015f37571e89206e6acecf36300873db8fa