Skip to content

Commit 749e912

Browse files
committed
Bump version
1 parent ad6346e commit 749e912

7 files changed

Lines changed: 16 additions & 15 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,7 @@ For breaking changes, see [Upgrading.md](Documentation/Upgrading.md).
189189
[diff-0.15.2]: https://github.com/stephencelis/SQLite.swift/compare/0.15.1...0.15.2
190190
[diff-0.15.3]: https://github.com/stephencelis/SQLite.swift/compare/0.15.2...0.15.3
191191
[diff-0.15.4]: https://github.com/stephencelis/SQLite.swift/compare/0.15.3...0.15.4
192+
[diff-0.15.5]: https://github.com/stephencelis/SQLite.swift/compare/0.15.4...0.15.5
192193

193194
[#30]: https://github.com/stephencelis/SQLite.swift/issues/30
194195
[#142]: https://github.com/stephencelis/SQLite.swift/issues/142

Documentation/Index.md

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

110110
```swift
111111
dependencies: [
112-
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.15.4")
112+
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.15.5")
113113
]
114114
```
115115

@@ -127,7 +127,7 @@ SQLite.swift for different use cases.
127127
```swift
128128
dependencies: [
129129
.package(url: "https://github.com/stephencelis/SQLite.swift.git",
130-
from: "0.15.4",
130+
from: "0.15.5",
131131
traits: ["XXX"])
132132
]
133133
```
@@ -151,7 +151,7 @@ If you want to use [SQLCipher][] with SQLite.swift you can specify the `SQLCiphe
151151

152152
```swift
153153
depdencies: [
154-
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.15.4", traits: ["SQLCipher"])
154+
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.15.5", traits: ["SQLCipher"])
155155
]
156156
```
157157

@@ -181,7 +181,7 @@ let package = Package(
181181
dependencies: [
182182
.package(
183183
url: "https://github.com/stephencelis/SQLite.swift.git",
184-
from: "0.15.4",
184+
from: "0.15.5",
185185
traits: ["SQLCipher"])
186186
],
187187
targets: [
@@ -228,7 +228,7 @@ install SQLite.swift with Carthage:
228228
2. Update your Cartfile to include the following:
229229

230230
```ruby
231-
github "stephencelis/SQLite.swift" ~> 0.15.4
231+
github "stephencelis/SQLite.swift" ~> 0.15.5
232232
```
233233

234234
3. Run `carthage update` and [add the appropriate framework][Carthage Usage].
@@ -258,7 +258,7 @@ install SQLite.swift with Carthage:
258258
use_frameworks!
259259
260260
target 'YourAppTargetName' do
261-
pod 'SQLite.swift', '~> 0.15.4'
261+
pod 'SQLite.swift', '~> 0.15.5'
262262
end
263263
```
264264

@@ -272,7 +272,7 @@ with the OS you can require the `standalone` subspec:
272272

273273
```ruby
274274
target 'YourAppTargetName' do
275-
pod 'SQLite.swift/standalone', '~> 0.15.4'
275+
pod 'SQLite.swift/standalone', '~> 0.15.5'
276276
end
277277
```
278278

@@ -282,7 +282,7 @@ dependency to sqlite3 or one of its subspecs:
282282

283283
```ruby
284284
target 'YourAppTargetName' do
285-
pod 'SQLite.swift/standalone', '~> 0.15.4'
285+
pod 'SQLite.swift/standalone', '~> 0.15.5'
286286
pod 'sqlite3/fts5', '= 3.15.0' # SQLite 3.15.0 with FTS5 enabled
287287
end
288288
```

Documentation/Linux.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ embed SQLite:
1313
```swift
1414
dependencies: [
1515
.package(url: "https://github.com/stephencelis/SQLite.swift.git",
16-
from: "0.15.4",
16+
from: "0.15.5",
1717
traits: ["SwiftToolchainCSQLite"])
1818
]
1919
```

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.15.4")
134+
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.15.5")
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.15.4
158+
github "stephencelis/SQLite.swift" ~> 0.15.5
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.15.4"
3+
s.version = "0.15.5"
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
@@ -1772,7 +1772,7 @@
17721772
GCC_WARN_UNUSED_VARIABLE = YES;
17731773
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
17741774
MACOSX_DEPLOYMENT_TARGET = 10.13;
1775-
MARKETING_VERSION = 0.15.4;
1775+
MARKETING_VERSION = 0.15.5;
17761776
MTL_ENABLE_DEBUG_INFO = YES;
17771777
ONLY_ACTIVE_ARCH = YES;
17781778
PRODUCT_NAME = "";
@@ -1832,7 +1832,7 @@
18321832
GCC_WARN_UNUSED_VARIABLE = YES;
18331833
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
18341834
MACOSX_DEPLOYMENT_TARGET = 10.13;
1835-
MARKETING_VERSION = 0.15.4;
1835+
MARKETING_VERSION = 0.15.5;
18361836
MTL_ENABLE_DEBUG_INFO = NO;
18371837
PRODUCT_NAME = "";
18381838
SDKROOT = iphoneos;

Tests/SPM/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ let package = Package(
2222
// for testing from same repository
2323
.package(path: "../..", traits: traits)
2424
// normally this would be:
25-
// .package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.15.4")
25+
// .package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.15.5")
2626
],
2727
targets: [
2828
.executableTarget(name: "test", dependencies: [.product(name: "SQLite", package: "SQLite.swift")])

0 commit comments

Comments
 (0)