Skip to content

Commit 3dacf3b

Browse files
committed
Prepare 0.11.0
1 parent dc1b0c4 commit 3dacf3b

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

Documentation/Index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ install SQLite.swift with Carthage:
7878
2. Update your Cartfile to include the following:
7979

8080
```
81-
github "stephencelis/SQLite.swift" ~> 0.10.1
81+
github "stephencelis/SQLite.swift" ~> 0.11.0
8282
```
8383
8484
3. Run `carthage update` and [add the appropriate framework][Carthage Usage].
@@ -106,7 +106,7 @@ install SQLite.swift with Carthage:
106106
``` ruby
107107
use_frameworks!
108108
109-
pod 'SQLite.swift', '~> 0.10.1'
109+
pod 'SQLite.swift', '~> 0.11.0'
110110
```
111111
112112
3. Run `pod install`.
@@ -116,13 +116,13 @@ install SQLite.swift with Carthage:
116116
If you want to use a more recent version of SQLite than what is provided with the OS you can require the `standalone` subspec:
117117
118118
``` ruby
119-
pod 'SQLite.swift/standalone', '~> 0.10.1'
119+
pod 'SQLite.swift/standalone', '~> 0.11.0'
120120
```
121121

122122
By default this will use the most recent version of SQLite without any extras. If you want you can further customize this by adding another dependency to sqlite3 or one of its subspecs:
123123

124124
``` ruby
125-
pod 'SQLite.swift/standalone', '~> 0.10.1'
125+
pod 'SQLite.swift/standalone', '~> 0.11.0'
126126
pod 'sqlite3/fts5', '= 3.11.1' # SQLite 3.11.1 with FTS5 enabled
127127
```
128128

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ install SQLite.swift with Carthage:
129129
2. Update your Cartfile to include the following:
130130

131131
```
132-
github "stephencelis/SQLite.swift" ~> 0.10.1
132+
github "stephencelis/SQLite.swift" ~> 0.11.0
133133
```
134134
135135
3. Run `carthage update` and [add the appropriate framework][Carthage Usage].
@@ -159,7 +159,7 @@ SQLite.swift with CocoaPods:
159159
``` ruby
160160
use_frameworks!
161161
162-
pod 'SQLite.swift', '~> 0.10.1'
162+
pod 'SQLite.swift', '~> 0.11.0'
163163
```
164164
165165
3. Run `pod install`.

SQLite.swift.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
Pod::Spec.new do |s|
77
s.name = "SQLite.swift"
8-
s.version = "0.10.1"
8+
s.version = "0.11.0"
99
s.summary = "A type-safe, Swift-language layer over SQLite3 for iOS and OS X."
1010

1111
s.description = <<-DESC

SQLite/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.10.1</string>
18+
<string>0.11.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)