@@ -84,7 +84,7 @@ applications.
8484
8585 ``` swift
8686 dependencies: [
87- .package (url : " https://github.com/stephencelis/SQLite.swift.git" , from : " 0.12 .0" )
87+ .package (url : " https://github.com/stephencelis/SQLite.swift.git" , from : " 0.13 .0" )
8888 ]
8989 ```
9090
@@ -105,7 +105,7 @@ install SQLite.swift with Carthage:
105105 2 . Update your Cartfile to include the following:
106106
107107 ``` ruby
108- github " stephencelis/SQLite.swift" ~ > 0.12 .0
108+ github " stephencelis/SQLite.swift" ~ > 0.13 .0
109109 ```
110110
111111 3 . Run ` carthage update` and [add the appropriate framework][Carthage Usage ].
@@ -135,7 +135,7 @@ install SQLite.swift with Carthage:
135135 use_frameworks!
136136
137137 target 'YourAppTargetName' do
138- pod 'SQLite.swift', '~> 0.12 .0'
138+ pod 'SQLite.swift', '~> 0.13 .0'
139139 end
140140 ` ` `
141141
@@ -149,7 +149,7 @@ with the OS you can require the `standalone` subspec:
149149
150150` ` ` ruby
151151target 'YourAppTargetName' do
152- pod 'SQLite.swift/standalone', '~> 0.12 .0'
152+ pod 'SQLite.swift/standalone', '~> 0.13 .0'
153153end
154154` ` `
155155
@@ -159,7 +159,7 @@ dependency to sqlite3 or one of its subspecs:
159159
160160` ` ` ruby
161161target 'YourAppTargetName' do
162- pod 'SQLite.swift/standalone', '~> 0.12 .0'
162+ pod 'SQLite.swift/standalone', '~> 0.13 .0'
163163 pod 'sqlite3/fts5', '= 3.15.0' # SQLite 3.15.0 with FTS5 enabled
164164end
165165` ` `
@@ -173,7 +173,7 @@ If you want to use [SQLCipher][] with SQLite.swift you can require the
173173
174174` ` ` ruby
175175target 'YourAppTargetName' do
176- pod 'SQLite.swift/SQLCipher', '~> 0.12 .0'
176+ pod 'SQLite.swift/SQLCipher', '~> 0.13 .0'
177177end
178178` ` `
179179
0 commit comments