Skip to content

Commit fc23699

Browse files
committed
fix: visionos to cocoapods
1 parent f0af5e0 commit fc23699

File tree

5 files changed

+21
-10
lines changed

5 files changed

+21
-10
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
0.15.2 (16-04-2024), [diff][diff-0.15.2]
2+
========================================
3+
* fix: visionos to cocoapods ([#1260][])
4+
15
0.15.1 (14-04-2024), [diff][diff-0.15.1]
26
========================================
37

@@ -164,6 +168,7 @@ For breaking changes, see [Upgrading.md](Documentation/Upgrading.md).
164168
[diff-0.14.1]: https://github.com/stephencelis/SQLite.swift/compare/0.14.0...0.14.1
165169
[diff-0.15.0]: https://github.com/stephencelis/SQLite.swift/compare/0.14.0...0.15.0
166170
[diff-0.15.1]: https://github.com/stephencelis/SQLite.swift/compare/0.15.0...0.15.1
171+
[diff-0.15.2]: https://github.com/stephencelis/SQLite.swift/compare/0.15.1...0.15.2
167172

168173
[#30]: https://github.com/stephencelis/SQLite.swift/issues/30
169174
[#142]: https://github.com/stephencelis/SQLite.swift/issues/142
@@ -248,3 +253,4 @@ For breaking changes, see [Upgrading.md](Documentation/Upgrading.md).
248253
[#1248]: https://github.com/stephencelis/SQLite.swift/pull/1248
249254
[#1255]: https://github.com/stephencelis/SQLite.swift/pull/1255
250255
[#1237]: https://github.com/stephencelis/SQLite.swift/pull/1237
256+
[#1260]: https://github.com/stephencelis/SQLite.swift/pull/1260

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.1")
111+
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.15.2")
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.1
132+
github "stephencelis/SQLite.swift" ~> 0.15.2
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.1'
162+
pod 'SQLite.swift', '~> 0.15.2'
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.1'
176+
pod 'SQLite.swift/standalone', '~> 0.15.2'
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.1'
186+
pod 'SQLite.swift/standalone', '~> 0.15.2'
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.1'
202+
pod 'SQLite.swift/SQLCipher', '~> 0.15.2'
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.1")
131+
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.15.2")
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.1
155+
github "stephencelis/SQLite.swift" ~> 0.15.2
156156
```
157157

158158
3. Run `carthage update` and

SQLite.swift.podspec

+6-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.1"
3+
s.version = "0.15.2"
44
s.summary = "A type-safe, Swift-language layer over SQLite3."
55

66
s.description = <<-DESC
@@ -22,11 +22,13 @@ Pod::Spec.new do |s|
2222
tvos_deployment_target = '12.0'
2323
osx_deployment_target = '10.13'
2424
watchos_deployment_target = '4.0'
25+
visionos_deployment_target = '1.0'
2526

2627
s.ios.deployment_target = ios_deployment_target
2728
s.tvos.deployment_target = tvos_deployment_target
2829
s.osx.deployment_target = osx_deployment_target
2930
s.watchos.deployment_target = watchos_deployment_target
31+
s.visionos.deployment_target = visionos_deployment_target
3032

3133
s.subspec 'standard' do |ss|
3234
ss.source_files = 'Sources/SQLite/**/*.{c,h,m,swift}'
@@ -37,6 +39,7 @@ Pod::Spec.new do |s|
3739
ss.tvos.deployment_target = tvos_deployment_target
3840
ss.osx.deployment_target = osx_deployment_target
3941
ss.watchos.deployment_target = watchos_deployment_target
42+
ss.visionos.deployment_target = visionos_deployment_target
4043

4144
ss.test_spec 'tests' do |test_spec|
4245
test_spec.resources = 'Tests/SQLiteTests/Resources/*'
@@ -61,6 +64,7 @@ Pod::Spec.new do |s|
6164
ss.tvos.deployment_target = tvos_deployment_target
6265
ss.osx.deployment_target = osx_deployment_target
6366
ss.watchos.deployment_target = watchos_deployment_target
67+
ss.visionos.deployment_target = visionos_deployment_target
6468

6569
ss.test_spec 'tests' do |test_spec|
6670
test_spec.resources = 'Tests/SQLiteTests/Resources/*'
@@ -83,6 +87,7 @@ Pod::Spec.new do |s|
8387
ss.tvos.deployment_target = tvos_deployment_target
8488
ss.osx.deployment_target = osx_deployment_target
8589
ss.watchos.deployment_target = watchos_deployment_target
90+
ss.visionos.deployment_target = visionos_deployment_target
8691

8792
ss.test_spec 'tests' do |test_spec|
8893
test_spec.resources = 'Tests/SQLiteTests/Resources/*'

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.1")
18+
// .package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.15.2")
1919
],
2020
targets: [
2121
.executableTarget(name: "test", dependencies: [.product(name: "SQLite", package: "SQLite.swift")])

0 commit comments

Comments
 (0)