Skip to content

Commit f0af5e0

Browse files
committedApr 13, 2024·
Changelogs v0.15.1
1 parent 2d964a7 commit f0af5e0

File tree

5 files changed

+23
-10
lines changed

5 files changed

+23
-10
lines changed
 

‎CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
0.15.1 (14-04-2024), [diff][diff-0.15.1]
2+
========================================
3+
4+
* Update CoreFunctions.swift fix typo ([#1249][])
5+
* Fix #1247 support nil case when decoding optionals ([#1248][])
6+
* Change deployment targets for Xcode 15 and add dependency on custom Cocoapods fork ([#1255][])
7+
* Add VisionOS support ([#1237][])
8+
19
0.15.0 (24-02-2024), [diff][diff-0.15.0]
210
========================================
311

@@ -155,6 +163,7 @@ For breaking changes, see [Upgrading.md](Documentation/Upgrading.md).
155163
[diff-0.14.0]: https://github.com/stephencelis/SQLite.swift/compare/0.13.3...0.14.0
156164
[diff-0.14.1]: https://github.com/stephencelis/SQLite.swift/compare/0.14.0...0.14.1
157165
[diff-0.15.0]: https://github.com/stephencelis/SQLite.swift/compare/0.14.0...0.15.0
166+
[diff-0.15.1]: https://github.com/stephencelis/SQLite.swift/compare/0.15.0...0.15.1
158167

159168
[#30]: https://github.com/stephencelis/SQLite.swift/issues/30
160169
[#142]: https://github.com/stephencelis/SQLite.swift/issues/142
@@ -235,3 +244,7 @@ For breaking changes, see [Upgrading.md](Documentation/Upgrading.md).
235244
[#1218]: https://github.com/stephencelis/SQLite.swift/pull/1218
236245
[#1210]: https://github.com/stephencelis/SQLite.swift/pull/1210
237246
[#1245]: https://github.com/stephencelis/SQLite.swift/pull/1245
247+
[#1249]: https://github.com/stephencelis/SQLite.swift/pull/1249
248+
[#1248]: https://github.com/stephencelis/SQLite.swift/pull/1248
249+
[#1255]: https://github.com/stephencelis/SQLite.swift/pull/1255
250+
[#1237]: https://github.com/stephencelis/SQLite.swift/pull/1237

‎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.0")
111+
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.15.1")
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.0
132+
github "stephencelis/SQLite.swift" ~> 0.15.1
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.0'
162+
pod 'SQLite.swift', '~> 0.15.1'
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.0'
176+
pod 'SQLite.swift/standalone', '~> 0.15.1'
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.0'
186+
pod 'SQLite.swift/standalone', '~> 0.15.1'
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.0'
202+
pod 'SQLite.swift/SQLCipher', '~> 0.15.1'
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.0")
131+
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.15.1")
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.0
155+
github "stephencelis/SQLite.swift" ~> 0.15.1
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.0"
3+
s.version = "0.15.1"
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.0")
18+
// .package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.15.1")
1919
],
2020
targets: [
2121
.executableTarget(name: "test", dependencies: [.product(name: "SQLite", package: "SQLite.swift")])

0 commit comments

Comments
 (0)
Please sign in to comment.