Skip to content

Commit dad179a

Browse files
committed
Bump version number
1 parent ff3c4a2 commit dad179a

File tree

6 files changed

+15
-16
lines changed

6 files changed

+15
-16
lines changed

Documentation/Index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ process of downloading, compiling, and linking dependencies.
8383

8484
```swift
8585
dependencies: [
86-
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.13.3")
86+
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.14.0")
8787
]
8888
```
8989

@@ -104,7 +104,7 @@ install SQLite.swift with Carthage:
104104
2. Update your Cartfile to include the following:
105105

106106
```ruby
107-
github "stephencelis/SQLite.swift" ~> 0.13.3
107+
github "stephencelis/SQLite.swift" ~> 0.14.0
108108
```
109109

110110
3. Run `carthage update` and [add the appropriate framework][Carthage Usage].
@@ -134,7 +134,7 @@ install SQLite.swift with Carthage:
134134
use_frameworks!
135135
136136
target 'YourAppTargetName' do
137-
pod 'SQLite.swift', '~> 0.13.3'
137+
pod 'SQLite.swift', '~> 0.14.0'
138138
end
139139
```
140140

@@ -148,7 +148,7 @@ with the OS you can require the `standalone` subspec:
148148

149149
```ruby
150150
target 'YourAppTargetName' do
151-
pod 'SQLite.swift/standalone', '~> 0.13.3'
151+
pod 'SQLite.swift/standalone', '~> 0.14.0'
152152
end
153153
```
154154

@@ -158,7 +158,7 @@ dependency to sqlite3 or one of its subspecs:
158158

159159
```ruby
160160
target 'YourAppTargetName' do
161-
pod 'SQLite.swift/standalone', '~> 0.13.3'
161+
pod 'SQLite.swift/standalone', '~> 0.14.0'
162162
pod 'sqlite3/fts5', '= 3.15.0' # SQLite 3.15.0 with FTS5 enabled
163163
end
164164
```
@@ -174,7 +174,7 @@ If you want to use [SQLCipher][] with SQLite.swift you can require the
174174
target 'YourAppTargetName' do
175175
# Make sure you only require the subspec, otherwise you app might link against
176176
# the system SQLite, which means the SQLCipher-specific methods won't work.
177-
pod 'SQLite.swift/SQLCipher', '~> 0.13.3'
177+
pod 'SQLite.swift/SQLCipher', '~> 0.14.0'
178178
end
179179
```
180180

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ Swift code.
136136

137137
```swift
138138
dependencies: [
139-
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.13.3")
139+
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.14.0")
140140
]
141141
```
142142

@@ -160,7 +160,7 @@ install SQLite.swift with Carthage:
160160
2. Update your Cartfile to include the following:
161161

162162
```ruby
163-
github "stephencelis/SQLite.swift" ~> 0.13.3
163+
github "stephencelis/SQLite.swift" ~> 0.14.0
164164
```
165165

166166
3. Run `carthage update` and
@@ -191,7 +191,7 @@ SQLite.swift with CocoaPods:
191191
use_frameworks!
192192
193193
target 'YourAppTargetName' do
194-
pod 'SQLite.swift', '~> 0.13.3'
194+
pod 'SQLite.swift', '~> 0.14.0'
195195
end
196196
```
197197

@@ -250,7 +250,7 @@ device:
250250
[Submit a pull request]: https://github.com/stephencelis/SQLite.swift/fork
251251

252252

253-
## Author
253+
## Original author
254254

255255
- [Stephen Celis](mailto:stephen@stephencelis.com)
256256
([@stephencelis](https://twitter.com/stephencelis))

SQLite.swift.podspec

Lines changed: 1 addition & 1 deletion
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.13.3"
3+
s.version = "0.14.0"
44
s.summary = "A type-safe, Swift-language layer over SQLite3."
55

66
s.description = <<-DESC

SQLite.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1497,7 +1497,7 @@
14971497
INFOPLIST_FILE = "$(SRCROOT)/Sources/SQLite/Info.plist";
14981498
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
14991499
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1500-
MARKETING_VERSION = 0.13.3;
1500+
MARKETING_VERSION = 0.14.0;
15011501
PRODUCT_BUNDLE_IDENTIFIER = com.stephencelis.SQLite;
15021502
PRODUCT_NAME = SQLite;
15031503
SKIP_INSTALL = YES;
@@ -1520,7 +1520,7 @@
15201520
INFOPLIST_FILE = "$(SRCROOT)/Sources/SQLite/Info.plist";
15211521
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
15221522
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1523-
MARKETING_VERSION = 0.13.3;
1523+
MARKETING_VERSION = 0.14.0;
15241524
PRODUCT_BUNDLE_IDENTIFIER = com.stephencelis.SQLite;
15251525
PRODUCT_NAME = SQLite;
15261526
SKIP_INSTALL = YES;

Sources/SQLite/Typed/Expression.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +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.13.0)
77-
public func asSQL() -> String {
76+
func asSQL() -> String {
7877
let expressed = expression
7978
var idx = 0
8079
return expressed.template.reduce("") { template, character in

Tests/SPM/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ let package = Package(
1515
// for testing from same repository
1616
.package(path: "../..")
1717
// normally this would be:
18-
// .package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.13.0")
18+
// .package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.14.0")
1919
],
2020
targets: [
2121
.target(

0 commit comments

Comments
 (0)