@@ -81,7 +81,7 @@ process of downloading, compiling, and linking dependencies.
8181
8282 ``` swift
8383 dependencies: [
84- .package (url : " https://github.com/stephencelis/SQLite.swift.git" , from : " 0.13.0 " )
84+ .package (url : " https://github.com/stephencelis/SQLite.swift.git" , from : " 0.13.1 " )
8585 ]
8686 ```
8787
@@ -102,7 +102,7 @@ install SQLite.swift with Carthage:
102102 2 . Update your Cartfile to include the following:
103103
104104 ``` ruby
105- github " stephencelis/SQLite.swift" ~ > 0.13 .0
105+ github " stephencelis/SQLite.swift" ~ > 0.13 .1
106106 ```
107107
108108 3 . Run ` carthage update` and [add the appropriate framework][Carthage Usage ].
@@ -132,7 +132,7 @@ install SQLite.swift with Carthage:
132132 use_frameworks!
133133
134134 target 'YourAppTargetName' do
135- pod 'SQLite.swift', '~> 0.13.0 '
135+ pod 'SQLite.swift', '~> 0.13.1 '
136136 end
137137 ` ` `
138138
@@ -146,7 +146,7 @@ with the OS you can require the `standalone` subspec:
146146
147147` ` ` ruby
148148target 'YourAppTargetName' do
149- pod 'SQLite.swift/standalone', '~> 0.13.0 '
149+ pod 'SQLite.swift/standalone', '~> 0.13.1 '
150150end
151151` ` `
152152
@@ -156,7 +156,7 @@ dependency to sqlite3 or one of its subspecs:
156156
157157` ` ` ruby
158158target 'YourAppTargetName' do
159- pod 'SQLite.swift/standalone', '~> 0.13.0 '
159+ pod 'SQLite.swift/standalone', '~> 0.13.1 '
160160 pod 'sqlite3/fts5', '= 3.15.0' # SQLite 3.15.0 with FTS5 enabled
161161end
162162` ` `
@@ -172,7 +172,7 @@ If you want to use [SQLCipher][] with SQLite.swift you can require the
172172target 'YourAppTargetName' do
173173 # Make sure you only require the subspec, otherwise you app might link against
174174 # the system SQLite, which means the SQLCipher-specific methods won't work.
175- pod 'SQLite.swift/SQLCipher', '~> 0.13.0 '
175+ pod 'SQLite.swift/SQLCipher', '~> 0.13.1 '
176176end
177177` ` `
178178
0 commit comments