Skip to content

chore: update SQLite to 0.15.3 #51

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jul 11, 2024
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## [0.8.3]

* updated SQLite to `0.15.3` (@orestesgaolin)

## [0.8.2](https://github.com/garriguv/SQLiteMigrationManager.swift/releases/tag/0.8.2)

* Update SQLite.swift to `0.14.1` (@orestesgaolin)
Expand Down
2 changes: 1 addition & 1 deletion Cartfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github "stephencelis/SQLite.swift" ~> 0.13.0
github "stephencelis/SQLite.swift" ~> 0.15.3
2 changes: 1 addition & 1 deletion Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github "stephencelis/SQLite.swift" "0.13.3"
github "stephencelis/SQLite.swift" "0.15.3"
4 changes: 2 additions & 2 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"repositoryURL": "https://github.com/stephencelis/SQLite.swift.git",
"state": {
"branch": null,
"revision": "9af51e2edf491c0ea632e369a6566e09b65aa333",
"version": "0.13.0"
"revision": "a95fc6df17d108bd99210db5e8a9bac90fe984b8",
"version": "0.15.3"
}
}
]
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ let package = Package(
.library(name: "SQLiteMigrationManager", targets: ["SQLiteMigrationManager"])
],
dependencies: [
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.13.0")
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.15.3")
],
targets: [
.target(
Expand Down
2 changes: 1 addition & 1 deletion SQLiteMigrationManager iOS/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.8.2</string>
<string>0.8.3</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion SQLiteMigrationManager macOS/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.8.2</string>
<string>0.8.3</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSHumanReadableCopyright</key>
Expand Down
8 changes: 4 additions & 4 deletions SQLiteMigrationManager.swift.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "SQLiteMigrationManager.swift"
s.version = "0.8.2"
s.version = "0.8.3"
s.summary = "Migration manager for SQLite.swift"
s.description = <<-DESC
Migration manager for SQLite.swift, based on FMDBMigrationManager.
Expand All @@ -11,7 +11,7 @@ Pod::Spec.new do |s|
s.author = { "Vincent Garrigues" => "[email protected]" }
s.social_media_url = "https://masto.garriguv.io/@garriguv"

s.ios.deployment_target = '9.0'
s.ios.deployment_target = '12.0'
s.osx.deployment_target = '10.15'
s.default_subspec = 'standard'

Expand All @@ -22,12 +22,12 @@ Pod::Spec.new do |s|

s.subspec 'standard' do |ss|
ss.source_files = "Sources"
ss.dependency "SQLite.swift", "~> 0.14.1"
ss.dependency "SQLite.swift", "~> 0.15.3"
end

s.subspec 'SQLCipher' do |ss|
ss.source_files = "Sources"
ss.dependency "SQLite.swift/SQLCipher", "~> 0.14.1"
ss.dependency "SQLite.swift/SQLCipher", "~> 0.15.3"
end

end
Loading