Skip to content

Commit a95fc6d

Browse files
committed
v0.15.3 (oups)
1 parent 966344c commit a95fc6d

File tree

5 files changed

+15
-10
lines changed

5 files changed

+15
-10
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
0.15.3 (19-04-2024), [diff][diff-0.15.3]
2+
========================================
3+
* Update `podspec` to include privacy manifest ([#1265][])
4+
15
0.15.2 (16-04-2024), [diff][diff-0.15.2]
26
========================================
37
* fix: visionos to cocoapods ([#1260][])
@@ -254,3 +258,4 @@ For breaking changes, see [Upgrading.md](Documentation/Upgrading.md).
254258
[#1255]: https://github.com/stephencelis/SQLite.swift/pull/1255
255259
[#1237]: https://github.com/stephencelis/SQLite.swift/pull/1237
256260
[#1260]: https://github.com/stephencelis/SQLite.swift/pull/1260
261+
[#1265]: https://github.com/stephencelis/SQLite.swift/pull/1265

Documentation/Index.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ process of downloading, compiling, and linking dependencies.
108108

109109
```swift
110110
dependencies: [
111-
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.15.2")
111+
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.15.3")
112112
]
113113
```
114114

@@ -129,7 +129,7 @@ install SQLite.swift with Carthage:
129129
2. Update your Cartfile to include the following:
130130

131131
```ruby
132-
github "stephencelis/SQLite.swift" ~> 0.15.2
132+
github "stephencelis/SQLite.swift" ~> 0.15.3
133133
```
134134

135135
3. Run `carthage update` and [add the appropriate framework][Carthage Usage].
@@ -159,7 +159,7 @@ install SQLite.swift with Carthage:
159159
use_frameworks!
160160
161161
target 'YourAppTargetName' do
162-
pod 'SQLite.swift', '~> 0.15.2'
162+
pod 'SQLite.swift', '~> 0.15.3'
163163
end
164164
```
165165

@@ -173,7 +173,7 @@ with the OS you can require the `standalone` subspec:
173173

174174
```ruby
175175
target 'YourAppTargetName' do
176-
pod 'SQLite.swift/standalone', '~> 0.15.2'
176+
pod 'SQLite.swift/standalone', '~> 0.15.3'
177177
end
178178
```
179179

@@ -183,7 +183,7 @@ dependency to sqlite3 or one of its subspecs:
183183

184184
```ruby
185185
target 'YourAppTargetName' do
186-
pod 'SQLite.swift/standalone', '~> 0.15.2'
186+
pod 'SQLite.swift/standalone', '~> 0.15.3'
187187
pod 'sqlite3/fts5', '= 3.15.0' # SQLite 3.15.0 with FTS5 enabled
188188
end
189189
```
@@ -199,7 +199,7 @@ If you want to use [SQLCipher][] with SQLite.swift you can require the
199199
target 'YourAppTargetName' do
200200
# Make sure you only require the subspec, otherwise you app might link against
201201
# the system SQLite, which means the SQLCipher-specific methods won't work.
202-
pod 'SQLite.swift/SQLCipher', '~> 0.15.2'
202+
pod 'SQLite.swift/SQLCipher', '~> 0.15.3'
203203
end
204204
```
205205

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ Swift code.
128128

129129
```swift
130130
dependencies: [
131-
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.15.2")
131+
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.15.3")
132132
]
133133
```
134134

@@ -152,7 +152,7 @@ install SQLite.swift with Carthage:
152152
2. Update your Cartfile to include the following:
153153

154154
```ruby
155-
github "stephencelis/SQLite.swift" ~> 0.15.2
155+
github "stephencelis/SQLite.swift" ~> 0.15.3
156156
```
157157

158158
3. Run `carthage update` and

SQLite.swift.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "SQLite.swift"
3-
s.version = "0.15.2"
3+
s.version = "0.15.3"
44
s.summary = "A type-safe, Swift-language layer over SQLite3."
55

66
s.description = <<-DESC

Tests/SPM/Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ let package = Package(
1515
// for testing from same repository
1616
.package(path: "../..")
1717
// normally this would be:
18-
// .package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.15.2")
18+
// .package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.15.3")
1919
],
2020
targets: [
2121
.executableTarget(name: "test", dependencies: [.product(name: "SQLite", package: "SQLite.swift")])

0 commit comments

Comments
 (0)