Skip to content

Commit 135ce68

Browse files
committed
Bump version number
1 parent d9deaa4 commit 135ce68

File tree

5 files changed

+11
-10
lines changed

5 files changed

+11
-10
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ For breaking changes, see [Upgrading.md](Documentation/Upgrading.md).
134134
[diff-0.13.2]: https://github.com/stephencelis/SQLite.swift/compare/0.13.1...0.13.2
135135
[diff-0.13.3]: https://github.com/stephencelis/SQLite.swift/compare/0.13.2...0.13.3
136136
[diff-0.14.0]: https://github.com/stephencelis/SQLite.swift/compare/0.13.3...0.14.0
137+
[diff-0.14.1]: https://github.com/stephencelis/SQLite.swift/compare/0.14.0...0.14.1
137138

138139
[#30]: https://github.com/stephencelis/SQLite.swift/issues/30
139140
[#142]: https://github.com/stephencelis/SQLite.swift/issues/142

Documentation/Index.md

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

9191
```swift
9292
dependencies: [
93-
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.14.0")
93+
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.14.1")
9494
]
9595
```
9696

@@ -111,7 +111,7 @@ install SQLite.swift with Carthage:
111111
2. Update your Cartfile to include the following:
112112

113113
```ruby
114-
github "stephencelis/SQLite.swift" ~> 0.14.0
114+
github "stephencelis/SQLite.swift" ~> 0.14.1
115115
```
116116

117117
3. Run `carthage update` and [add the appropriate framework][Carthage Usage].
@@ -141,7 +141,7 @@ install SQLite.swift with Carthage:
141141
use_frameworks!
142142
143143
target 'YourAppTargetName' do
144-
pod 'SQLite.swift', '~> 0.14.0'
144+
pod 'SQLite.swift', '~> 0.14.1'
145145
end
146146
```
147147

@@ -155,7 +155,7 @@ with the OS you can require the `standalone` subspec:
155155

156156
```ruby
157157
target 'YourAppTargetName' do
158-
pod 'SQLite.swift/standalone', '~> 0.14.0'
158+
pod 'SQLite.swift/standalone', '~> 0.14.1'
159159
end
160160
```
161161

@@ -165,7 +165,7 @@ dependency to sqlite3 or one of its subspecs:
165165

166166
```ruby
167167
target 'YourAppTargetName' do
168-
pod 'SQLite.swift/standalone', '~> 0.14.0'
168+
pod 'SQLite.swift/standalone', '~> 0.14.1'
169169
pod 'sqlite3/fts5', '= 3.15.0' # SQLite 3.15.0 with FTS5 enabled
170170
end
171171
```
@@ -181,7 +181,7 @@ If you want to use [SQLCipher][] with SQLite.swift you can require the
181181
target 'YourAppTargetName' do
182182
# Make sure you only require the subspec, otherwise you app might link against
183183
# the system SQLite, which means the SQLCipher-specific methods won't work.
184-
pod 'SQLite.swift/SQLCipher', '~> 0.14.0'
184+
pod 'SQLite.swift/SQLCipher', '~> 0.14.1'
185185
end
186186
```
187187

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ Swift code.
131131

132132
```swift
133133
dependencies: [
134-
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.14.0")
134+
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.14.1")
135135
]
136136
```
137137

@@ -155,7 +155,7 @@ install SQLite.swift with Carthage:
155155
2. Update your Cartfile to include the following:
156156

157157
```ruby
158-
github "stephencelis/SQLite.swift" ~> 0.14.0
158+
github "stephencelis/SQLite.swift" ~> 0.14.1
159159
```
160160

161161
3. Run `carthage update` and

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.14.0"
3+
s.version = "0.14.1"
44
s.summary = "A type-safe, Swift-language layer over SQLite3."
55

66
s.description = <<-DESC

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.14.0")
18+
// .package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.14.1")
1919
],
2020
targets: [
2121
.target(

0 commit comments

Comments
 (0)