Skip to content

Commit 6075168

Browse files
authored
Merge pull request stephencelis#579 from stephencelis/prepare-prelease
Prepare release
2 parents ae8769f + 1b09ca4 commit 6075168

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

‎CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
0.11.2 (), [diff][diff-0.11.2]
1+
0.11.2 (25-12-2016), [diff][diff-0.11.2]
22
========================================
33

44
* Fixed SQLCipher integration with read-only databases ([#559][])

‎Documentation/Index.md

+5-5
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-
"stephencelis/SQLite.swift" ~> 0.11.1
81+
"stephencelis/SQLite.swift" ~> 0.11.2
8282
```
8383
8484
3. Run `carthage update` and [add the appropriate framework][Carthage Usage].
@@ -113,7 +113,7 @@ install SQLite.swift with Carthage:
113113
use_frameworks!
114114
115115
target 'YourAppTargetName' do
116-
pod 'SQLite.swift', '~> 0.11.1'
116+
pod 'SQLite.swift', '~> 0.11.2'
117117
end
118118
```
119119
@@ -126,15 +126,15 @@ install SQLite.swift with Carthage:
126126
127127
``` ruby
128128
target 'YourAppTargetName' do
129-
pod 'SQLite.swift/standalone', '~> 0.11.1'
129+
pod 'SQLite.swift/standalone', '~> 0.11.2'
130130
end
131131
```
132132

133133
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:
134134

135135
``` ruby
136136
target 'YourAppTargetName' do
137-
pod 'SQLite.swift/standalone', '~> 0.11.1'
137+
pod 'SQLite.swift/standalone', '~> 0.11.2'
138138
pod 'sqlite3/fts5', '= 3.15.0' # SQLite 3.15.0 with FTS5 enabled
139139
end
140140
```
@@ -148,7 +148,7 @@ subspec in your Podfile:
148148

149149
``` ruby
150150
target 'YourAppTargetName' do
151-
pod 'SQLite.swift/SQLCipher', '~> 0.11.1'
151+
pod 'SQLite.swift/SQLCipher', '~> 0.11.2'
152152
end
153153
```
154154

‎README.md

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

125125
```
126-
"stephencelis/SQLite.swift" ~> 0.11.1
126+
"stephencelis/SQLite.swift" ~> 0.11.2
127127
```
128128
129129
3. Run `carthage update` and [add the appropriate framework][Carthage Usage].
@@ -159,7 +159,7 @@ SQLite.swift with CocoaPods:
159159
use_frameworks!
160160
161161
target 'YourAppTargetName' do
162-
pod 'SQLite.swift', '~> 0.11.1'
162+
pod 'SQLite.swift', '~> 0.11.2'
163163
end
164164
```
165165

‎SQLite.swift.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "SQLite.swift"
3-
s.version = "0.11.1"
3+
s.version = "0.11.2"
44
s.summary = "A type-safe, Swift-language layer over SQLite3 for iOS and OS X."
55

66
s.description = <<-DESC

‎Sources/SQLite/Info.plist

+1-1
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.11.1</string>
18+
<string>0.11.2</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)