@@ -80,7 +80,7 @@ install SQLite.swift with Carthage:
8080 2 . Update your Cartfile to include the following:
8181
8282 ``` ruby
83- github " stephencelis/SQLite.swift" ~ > 0.12
83+ github " stephencelis/SQLite.swift" ~ > 0.12 . 0
8484 ```
8585
8686 3 . Run ` carthage update` and [add the appropriate framework][Carthage Usage ].
@@ -110,7 +110,7 @@ install SQLite.swift with Carthage:
110110 use_frameworks!
111111
112112 target 'YourAppTargetName' do
113- pod 'SQLite.swift', '~> 0.12'
113+ pod 'SQLite.swift', '~> 0.12.0 '
114114 end
115115 ` ` `
116116
@@ -124,7 +124,7 @@ with the OS you can require the `standalone` subspec:
124124
125125` ` ` ruby
126126target 'YourAppTargetName' do
127- pod 'SQLite.swift/standalone', '~> 0.12'
127+ pod 'SQLite.swift/standalone', '~> 0.12.0 '
128128end
129129` ` `
130130
@@ -134,7 +134,7 @@ dependency to sqlite3 or one of its subspecs:
134134
135135` ` ` ruby
136136target 'YourAppTargetName' do
137- pod 'SQLite.swift/standalone', '~> 0.12'
137+ pod 'SQLite.swift/standalone', '~> 0.12.0 '
138138 pod 'sqlite3/fts5', '= 3.15.0' # SQLite 3.15.0 with FTS5 enabled
139139end
140140` ` `
@@ -148,7 +148,7 @@ If you want to use [SQLCipher][] with SQLite.swift you can require the
148148
149149` ` ` ruby
150150target 'YourAppTargetName' do
151- pod 'SQLite.swift/SQLCipher', '~> 0.12'
151+ pod 'SQLite.swift/SQLCipher', '~> 0.12.0 '
152152end
153153` ` `
154154
@@ -181,7 +181,7 @@ applications.
181181
182182 ` ` ` swift
183183 dependencies: [
184- .package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.12")
184+ .package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.12.0 ")
185185 ]
186186 ` ` `
187187
0 commit comments