@@ -83,7 +83,7 @@ process of downloading, compiling, and linking dependencies.
8383
8484 ``` swift
8585 dependencies: [
86- .package (url : " https://github.com/stephencelis/SQLite.swift.git" , from : " 0.13.3 " )
86+ .package (url : " https://github.com/stephencelis/SQLite.swift.git" , from : " 0.14.0 " )
8787 ]
8888 ```
8989
@@ -104,7 +104,7 @@ install SQLite.swift with Carthage:
104104 2 . Update your Cartfile to include the following:
105105
106106 ``` ruby
107- github " stephencelis/SQLite.swift" ~ > 0.13 . 3
107+ github " stephencelis/SQLite.swift" ~ > 0.14 . 0
108108 ```
109109
110110 3 . Run ` carthage update` and [add the appropriate framework][Carthage Usage ].
@@ -134,7 +134,7 @@ install SQLite.swift with Carthage:
134134 use_frameworks!
135135
136136 target 'YourAppTargetName' do
137- pod 'SQLite.swift', '~> 0.13.3 '
137+ pod 'SQLite.swift', '~> 0.14.0 '
138138 end
139139 ` ` `
140140
@@ -148,7 +148,7 @@ with the OS you can require the `standalone` subspec:
148148
149149` ` ` ruby
150150target 'YourAppTargetName' do
151- pod 'SQLite.swift/standalone', '~> 0.13.3 '
151+ pod 'SQLite.swift/standalone', '~> 0.14.0 '
152152end
153153` ` `
154154
@@ -158,7 +158,7 @@ dependency to sqlite3 or one of its subspecs:
158158
159159` ` ` ruby
160160target 'YourAppTargetName' do
161- pod 'SQLite.swift/standalone', '~> 0.13.3 '
161+ pod 'SQLite.swift/standalone', '~> 0.14.0 '
162162 pod 'sqlite3/fts5', '= 3.15.0' # SQLite 3.15.0 with FTS5 enabled
163163end
164164` ` `
@@ -174,7 +174,7 @@ If you want to use [SQLCipher][] with SQLite.swift you can require the
174174target 'YourAppTargetName' do
175175 # Make sure you only require the subspec, otherwise you app might link against
176176 # the system SQLite, which means the SQLCipher-specific methods won't work.
177- pod 'SQLite.swift/SQLCipher', '~> 0.13.3 '
177+ pod 'SQLite.swift/SQLCipher', '~> 0.14.0 '
178178end
179179` ` `
180180
0 commit comments