1
1
Pod ::Spec . new do |s |
2
2
s . name = "SQLite.swift"
3
- s . version = "0.15.1 "
3
+ s . version = "0.15.2 "
4
4
s . summary = "A type-safe, Swift-language layer over SQLite3."
5
5
6
6
s . description = <<-DESC
@@ -22,11 +22,13 @@ Pod::Spec.new do |s|
22
22
tvos_deployment_target = '12.0'
23
23
osx_deployment_target = '10.13'
24
24
watchos_deployment_target = '4.0'
25
+ visionos_deployment_target = '1.0'
25
26
26
27
s . ios . deployment_target = ios_deployment_target
27
28
s . tvos . deployment_target = tvos_deployment_target
28
29
s . osx . deployment_target = osx_deployment_target
29
30
s . watchos . deployment_target = watchos_deployment_target
31
+ s . visionos . deployment_target = visionos_deployment_target
30
32
31
33
s . subspec 'standard' do |ss |
32
34
ss . source_files = 'Sources/SQLite/**/*.{c,h,m,swift}'
@@ -37,6 +39,7 @@ Pod::Spec.new do |s|
37
39
ss . tvos . deployment_target = tvos_deployment_target
38
40
ss . osx . deployment_target = osx_deployment_target
39
41
ss . watchos . deployment_target = watchos_deployment_target
42
+ ss . visionos . deployment_target = visionos_deployment_target
40
43
41
44
ss . test_spec 'tests' do |test_spec |
42
45
test_spec . resources = 'Tests/SQLiteTests/Resources/*'
@@ -61,6 +64,7 @@ Pod::Spec.new do |s|
61
64
ss . tvos . deployment_target = tvos_deployment_target
62
65
ss . osx . deployment_target = osx_deployment_target
63
66
ss . watchos . deployment_target = watchos_deployment_target
67
+ ss . visionos . deployment_target = visionos_deployment_target
64
68
65
69
ss . test_spec 'tests' do |test_spec |
66
70
test_spec . resources = 'Tests/SQLiteTests/Resources/*'
@@ -83,6 +87,7 @@ Pod::Spec.new do |s|
83
87
ss . tvos . deployment_target = tvos_deployment_target
84
88
ss . osx . deployment_target = osx_deployment_target
85
89
ss . watchos . deployment_target = watchos_deployment_target
90
+ #ss.visionos.deployment_target = visionos_deployment_target # Not supported by SQLCipher for now
86
91
87
92
ss . test_spec 'tests' do |test_spec |
88
93
test_spec . resources = 'Tests/SQLiteTests/Resources/*'
0 commit comments