Skip to content

Commit

Permalink
Fix compile error on Mac Catalyst
Browse files Browse the repository at this point in the history
  • Loading branch information
Qiuwen-chen committed Mar 8, 2024
1 parent d0261fe commit ed0c5cd
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## v2.1.1

* Some bugfix for WCDB C++ and WCDB Swift
* Fix compile error on Mac Catalyst

## v2.1.0

Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ let package = Package(
.library(name: "WCDBSwiftDynamic", type: .dynamic, targets: ["WCDBSwift"]),
],
dependencies: [
.package(url: "https://github.com/Tencent/sqlcipher", .exactItem("1.4.3"))
.package(url: "https://github.com/Tencent/sqlcipher", .exactItem("1.4.4"))
],
targets: [
.target(
Expand Down
2 changes: 1 addition & 1 deletion WCDB.cpp.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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.3'
wcdb.dependency 'WCDBOptimizedSQLCipher', '1.4.4'
end
2 changes: 1 addition & 1 deletion WCDB.objc.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -128,5 +128,5 @@ Pod::Spec.new do |wcdb|
"OTHER_CPLUSPLUSFLAGS" => "-fvisibility-inlines-hidden",
}
wcdb.header_dir = "WCDB"
wcdb.dependency 'WCDBOptimizedSQLCipher', '1.4.3'
wcdb.dependency 'WCDBOptimizedSQLCipher', '1.4.4'
end
2 changes: 1 addition & 1 deletion WCDB.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -154,5 +154,5 @@ Pod::Spec.new do |wcdb|
}
wcdb.header_dir = "WCDB"
wcdb.swift_versions = '5'
wcdb.dependency 'WCDBOptimizedSQLCipher', '1.4.3'
wcdb.dependency 'WCDBOptimizedSQLCipher', '1.4.4'
end
2 changes: 1 addition & 1 deletion WCDB.swift.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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.3'
wcdb.dependency 'WCDBOptimizedSQLCipher', '1.4.4'
end
2 changes: 1 addition & 1 deletion sqlcipher

0 comments on commit ed0c5cd

Please sign in to comment.