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
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

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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