Skip to content

Commit

Permalink
Merge pull request #917 from ypopovych/master
Browse files Browse the repository at this point in the history
Fixed version
  • Loading branch information
ypopovych authored Apr 24, 2019
2 parents 41d2e75 + 9b2d3e2 commit 691fc89
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions Documentation/Index.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ install SQLite.swift with Carthage:
2. Update your Cartfile to include the following:

```ruby
github "stephencelis/SQLite.swift" ~> 0.12
github "stephencelis/SQLite.swift" ~> 0.12.0
```

3. Run `carthage update` and [add the appropriate framework][Carthage Usage].
Expand Down Expand Up @@ -110,7 +110,7 @@ install SQLite.swift with Carthage:
use_frameworks!
target 'YourAppTargetName' do
pod 'SQLite.swift', '~> 0.12'
pod 'SQLite.swift', '~> 0.12.0'
end
```

Expand All @@ -124,7 +124,7 @@ with the OS you can require the `standalone` subspec:

```ruby
target 'YourAppTargetName' do
pod 'SQLite.swift/standalone', '~> 0.12'
pod 'SQLite.swift/standalone', '~> 0.12.0'
end
```

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

```ruby
target 'YourAppTargetName' do
pod 'SQLite.swift/standalone', '~> 0.12'
pod 'SQLite.swift/standalone', '~> 0.12.0'
pod 'sqlite3/fts5', '= 3.15.0' # SQLite 3.15.0 with FTS5 enabled
end
```
Expand All @@ -148,7 +148,7 @@ If you want to use [SQLCipher][] with SQLite.swift you can require the

```ruby
target 'YourAppTargetName' do
pod 'SQLite.swift/SQLCipher', '~> 0.12'
pod 'SQLite.swift/SQLCipher', '~> 0.12.0'
end
```

Expand Down Expand Up @@ -181,7 +181,7 @@ applications.

```swift
dependencies: [
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.12")
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.12.0")
]
```

Expand Down
2 changes: 1 addition & 1 deletion Documentation/Planning.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ additions and Pull Requests, as well as to keep the Issues list clear of
enhancement requests so that bugs are more visible.

> ⚠ This document is currently not actively maintained. See
> the [0.12.0 milestone](https://github.com/stephencelis/SQLite.swift/issues?q=is%3Aopen+is%3Aissue+milestone%3A0.12.0)
> the [0.13.0 milestone](https://github.com/stephencelis/SQLite.swift/issues?q=is%3Aopen+is%3Aissue+milestone%3A0.13.0)
> on Github for additional information about planned features for the next release.
## Roadmap
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ install SQLite.swift with Carthage:
2. Update your Cartfile to include the following:

```ruby
github "stephencelis/SQLite.swift" ~> 0.12
github "stephencelis/SQLite.swift" ~> 0.12.0
```

3. Run `carthage update` and
Expand Down Expand Up @@ -156,7 +156,7 @@ SQLite.swift with CocoaPods:
use_frameworks!
target 'YourAppTargetName' do
pod 'SQLite.swift', '~> 0.12'
pod 'SQLite.swift', '~> 0.12.0'
end
```

Expand All @@ -174,7 +174,7 @@ Swift code.

```swift
dependencies: [
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.12")
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.12.0")
]
```

Expand Down
2 changes: 1 addition & 1 deletion SQLite.swift.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "SQLite.swift"
s.version = "0.12"
s.version = "0.12.0"
s.summary = "A type-safe, Swift-language layer over SQLite3 for iOS and macOS."

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion Sources/SQLite/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.12</string>
<string>0.12.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Sources/SQLite/Typed/Expression.swift
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public protocol Expressible {
extension Expressible {

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

0 comments on commit 691fc89

Please sign in to comment.