Skip to content

Commit 9b2d3e2

Browse files
committed
Updated version in README and Documentation
1 parent 08a1696 commit 9b2d3e2

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

Documentation/Index.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -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
126126
target 'YourAppTargetName' do
127-
pod 'SQLite.swift/standalone', '~> 0.12'
127+
pod 'SQLite.swift/standalone', '~> 0.12.0'
128128
end
129129
```
130130

@@ -134,7 +134,7 @@ dependency to sqlite3 or one of its subspecs:
134134

135135
```ruby
136136
target '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
139139
end
140140
```
@@ -148,7 +148,7 @@ If you want to use [SQLCipher][] with SQLite.swift you can require the
148148

149149
```ruby
150150
target 'YourAppTargetName' do
151-
pod 'SQLite.swift/SQLCipher', '~> 0.12'
151+
pod 'SQLite.swift/SQLCipher', '~> 0.12.0'
152152
end
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

Documentation/Planning.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ additions and Pull Requests, as well as to keep the Issues list clear of
66
enhancement requests so that bugs are more visible.
77

88
> ⚠ This document is currently not actively maintained. See
9-
> the [0.12.0 milestone](https://github.com/stephencelis/SQLite.swift/issues?q=is%3Aopen+is%3Aissue+milestone%3A0.12.0)
9+
> the [0.13.0 milestone](https://github.com/stephencelis/SQLite.swift/issues?q=is%3Aopen+is%3Aissue+milestone%3A0.13.0)
1010
> on Github for additional information about planned features for the next release.
1111
1212
## Roadmap

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ install SQLite.swift with Carthage:
124124
2. Update your Cartfile to include the following:
125125

126126
```ruby
127-
github "stephencelis/SQLite.swift" ~> 0.12
127+
github "stephencelis/SQLite.swift" ~> 0.12.0
128128
```
129129

130130
3. Run `carthage update` and
@@ -156,7 +156,7 @@ SQLite.swift with CocoaPods:
156156
use_frameworks!
157157
158158
target 'YourAppTargetName' do
159-
pod 'SQLite.swift', '~> 0.12'
159+
pod 'SQLite.swift', '~> 0.12.0'
160160
end
161161
```
162162

@@ -174,7 +174,7 @@ Swift code.
174174

175175
```swift
176176
dependencies: [
177-
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.12")
177+
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.12.0")
178178
]
179179
```
180180

Sources/SQLite/Typed/Expression.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public protocol Expressible {
7373
extension Expressible {
7474

7575
// naïve compiler for statements that can’t be bound, e.g., CREATE TABLE
76-
// FIXME: make internal (0.12.0)
76+
// FIXME: make internal (0.13.0)
7777
public func asSQL() -> String {
7878
let expressed = expression
7979
var idx = 0

0 commit comments

Comments
 (0)