Skip to content

Commit 7a40462

Browse files
chore: update SQLite to 0.15.3 (#51)
* Update SQLite to 0.14.1 * chore: update SQLite to 0.15.3 --------- Co-authored-by: Vincent Garrigues <[email protected]>
1 parent e4f65c9 commit 7a40462

File tree

8 files changed

+15
-11
lines changed

8 files changed

+15
-11
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## [0.8.3]
4+
5+
* updated SQLite to `0.15.3` (@orestesgaolin)
6+
37
## [0.8.2](https://github.com/garriguv/SQLiteMigrationManager.swift/releases/tag/0.8.2)
48

59
* Update SQLite.swift to `0.14.1` (@orestesgaolin)

Cartfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github "stephencelis/SQLite.swift" ~> 0.13.0
1+
github "stephencelis/SQLite.swift" ~> 0.15.3

Cartfile.resolved

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github "stephencelis/SQLite.swift" "0.13.3"
1+
github "stephencelis/SQLite.swift" "0.15.3"

Package.resolved

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
"repositoryURL": "https://github.com/stephencelis/SQLite.swift.git",
77
"state": {
88
"branch": null,
9-
"revision": "9af51e2edf491c0ea632e369a6566e09b65aa333",
10-
"version": "0.13.0"
9+
"revision": "a95fc6df17d108bd99210db5e8a9bac90fe984b8",
10+
"version": "0.15.3"
1111
}
1212
}
1313
]

Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ let package = Package(
77
.library(name: "SQLiteMigrationManager", targets: ["SQLiteMigrationManager"])
88
],
99
dependencies: [
10-
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.13.0")
10+
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.15.3")
1111
],
1212
targets: [
1313
.target(

SQLiteMigrationManager iOS/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.8.2</string>
18+
<string>0.8.3</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

SQLiteMigrationManager macOS/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.8.2</string>
18+
<string>0.8.3</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>NSHumanReadableCopyright</key>

SQLiteMigrationManager.swift.podspec

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "SQLiteMigrationManager.swift"
3-
s.version = "0.8.2"
3+
s.version = "0.8.3"
44
s.summary = "Migration manager for SQLite.swift"
55
s.description = <<-DESC
66
Migration manager for SQLite.swift, based on FMDBMigrationManager.
@@ -11,7 +11,7 @@ Pod::Spec.new do |s|
1111
s.author = { "Vincent Garrigues" => "[email protected]" }
1212
s.social_media_url = "https://masto.garriguv.io/@garriguv"
1313

14-
s.ios.deployment_target = '9.0'
14+
s.ios.deployment_target = '12.0'
1515
s.osx.deployment_target = '10.15'
1616
s.default_subspec = 'standard'
1717

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

2323
s.subspec 'standard' do |ss|
2424
ss.source_files = "Sources"
25-
ss.dependency "SQLite.swift", "~> 0.14.1"
25+
ss.dependency "SQLite.swift", "~> 0.15.3"
2626
end
2727

2828
s.subspec 'SQLCipher' do |ss|
2929
ss.source_files = "Sources"
30-
ss.dependency "SQLite.swift/SQLCipher", "~> 0.14.1"
30+
ss.dependency "SQLite.swift/SQLCipher", "~> 0.15.3"
3131
end
3232

3333
end

0 commit comments

Comments
 (0)