Skip to content

Commit 3708a96

Browse files
committed
Bump version number
1 parent 0bb4683 commit 3708a96

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

Documentation/Index.md

Lines changed: 5 additions & 5 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.11.3
81+
github "stephencelis/SQLite.swift" ~> 0.11.4
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.3'
116+
pod 'SQLite.swift', '~> 0.11.4'
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.3'
129+
pod 'SQLite.swift/standalone', '~> 0.11.4'
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.3'
137+
pod 'SQLite.swift/standalone', '~> 0.11.4'
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.3'
151+
pod 'SQLite.swift/SQLCipher', '~> 0.11.4'
152152
end
153153
```
154154

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# SQLite.swift
22

3-
[![Build Status][Badge]][Travis] [![CocoaPods Version](https://cocoapod-badges.herokuapp.com/v/SQLite.swift/badge.png)](http://cocoadocs.org/docsets/SQLite.swift) [![Swift](https://img.shields.io/badge/swift-3-orange.svg?style=flat)](https://developer.apple.com/swift/) [![Platform](https://cocoapod-badges.herokuapp.com/p/SQLite.swift/badge.png)](http://cocoadocs.org/docsets/SQLite.swift) [![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) [![Join the chat at https://gitter.im/stephencelis/SQLite.swift](https://badges.gitter.im/stephencelis/SQLite.swift.svg)](https://gitter.im/stephencelis/SQLite.swift)
3+
[![Build Status][Badge]][Travis] [![CocoaPods Version](https://cocoapod-badges.herokuapp.com/v/SQLite.swift/badge.png)](http://cocoadocs.org/docsets/SQLite.swift) [![Swift](https://img.shields.io/badge/swift-4-orange.svg?style=flat)](https://developer.apple.com/swift/) [![Platform](https://cocoapod-badges.herokuapp.com/p/SQLite.swift/badge.png)](http://cocoadocs.org/docsets/SQLite.swift) [![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) [![Join the chat at https://gitter.im/stephencelis/SQLite.swift](https://badges.gitter.im/stephencelis/SQLite.swift.svg)](https://gitter.im/stephencelis/SQLite.swift)
44

55
A type-safe, [Swift][]-language layer over [SQLite3][].
66

@@ -109,7 +109,7 @@ For a more comprehensive example, see [this article](http://masteringswift.blogs
109109

110110
## Installation
111111

112-
> _Note:_ SQLite.swift requires Swift 3 (and [Xcode][] 8). Use the [swift-4][] branch for Xcode 9 Beta.
112+
> _Note:_ SQLite.swift requires Swift 4 (and [Xcode][] 9).
113113
114114
### Carthage
115115

@@ -121,7 +121,7 @@ install SQLite.swift with Carthage:
121121
2. Update your Cartfile to include the following:
122122

123123
```
124-
github "stephencelis/SQLite.swift" ~> 0.11.3
124+
github "stephencelis/SQLite.swift" ~> 0.11.4
125125
```
126126
127127
3. Run `carthage update` and [add the appropriate framework][Carthage Usage].
@@ -157,7 +157,7 @@ SQLite.swift with CocoaPods:
157157
use_frameworks!
158158
159159
target 'YourAppTargetName' do
160-
pod 'SQLite.swift', '~> 0.11.3'
160+
pod 'SQLite.swift', '~> 0.11.4'
161161
end
162162
```
163163

Sources/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.11.3</string>
18+
<string>0.11.4</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)