Skip to content

Commit 60a6501

Browse files
committed
Bump version
1 parent db48bb0 commit 60a6501

File tree

6 files changed

+17
-16
lines changed

6 files changed

+17
-16
lines changed

Diff for: CHANGELOG.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
0.13.1 (tba)
1+
0.13.1 (17-11-2021), [diff][diff-0.13.1]
22
========================================
33

44
* Support for database backup ([#919][])
55
* Support for custom SQL aggregates ([#881][])
6-
* Restore previous iteration behavior ([#1075][])
6+
* Restore previous behavior in `FailableIterator` ([#1075][])
77
* Fix compilation on Linux ([#1077][])
88
* Align platform versions in SPM manifest and Xcode ([#1094][])
99
* Revert OSX deployment target back to 10.10 ([#1095][])
@@ -94,6 +94,7 @@
9494
[diff-0.12.0]: https://github.com/stephencelis/SQLite.swift/compare/0.11.6...0.12.0
9595
[diff-0.12.2]: https://github.com/stephencelis/SQLite.swift/compare/0.12.0...0.12.2
9696
[diff-0.13.0]: https://github.com/stephencelis/SQLite.swift/compare/0.12.2...0.13.0
97+
[diff-0.13.1]: https://github.com/stephencelis/SQLite.swift/compare/0.13.0...0.13.1
9798

9899
[#142]: https://github.com/stephencelis/SQLite.swift/issues/142
99100
[#315]: https://github.com/stephencelis/SQLite.swift/issues/315
@@ -131,4 +132,4 @@
131132
[#1075]: https://github.com/stephencelis/SQLite.swift/pull/1075
132133
[#1077]: https://github.com/stephencelis/SQLite.swift/issues/1077
133134
[#1094]: https://github.com/stephencelis/SQLite.swift/pull/1094
134-
[#1095]: https://github.com/stephencelis/SQLite.swift/pull/1095
135+
[#1095]: https://github.com/stephencelis/SQLite.swift/pull/1095

Diff for: Documentation/Index.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ process of downloading, compiling, and linking dependencies.
8181

8282
```swift
8383
dependencies: [
84-
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.13.0")
84+
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.13.1")
8585
]
8686
```
8787

@@ -102,7 +102,7 @@ install SQLite.swift with Carthage:
102102
2. Update your Cartfile to include the following:
103103

104104
```ruby
105-
github "stephencelis/SQLite.swift" ~> 0.13.0
105+
github "stephencelis/SQLite.swift" ~> 0.13.1
106106
```
107107

108108
3. Run `carthage update` and [add the appropriate framework][Carthage Usage].
@@ -132,7 +132,7 @@ install SQLite.swift with Carthage:
132132
use_frameworks!
133133
134134
target 'YourAppTargetName' do
135-
pod 'SQLite.swift', '~> 0.13.0'
135+
pod 'SQLite.swift', '~> 0.13.1'
136136
end
137137
```
138138

@@ -146,7 +146,7 @@ with the OS you can require the `standalone` subspec:
146146

147147
```ruby
148148
target 'YourAppTargetName' do
149-
pod 'SQLite.swift/standalone', '~> 0.13.0'
149+
pod 'SQLite.swift/standalone', '~> 0.13.1'
150150
end
151151
```
152152

@@ -156,7 +156,7 @@ dependency to sqlite3 or one of its subspecs:
156156

157157
```ruby
158158
target 'YourAppTargetName' do
159-
pod 'SQLite.swift/standalone', '~> 0.13.0'
159+
pod 'SQLite.swift/standalone', '~> 0.13.1'
160160
pod 'sqlite3/fts5', '= 3.15.0' # SQLite 3.15.0 with FTS5 enabled
161161
end
162162
```
@@ -172,7 +172,7 @@ If you want to use [SQLCipher][] with SQLite.swift you can require the
172172
target 'YourAppTargetName' do
173173
# Make sure you only require the subspec, otherwise you app might link against
174174
# the system SQLite, which means the SQLCipher-specific methods won't work.
175-
pod 'SQLite.swift/SQLCipher', '~> 0.13.0'
175+
pod 'SQLite.swift/SQLCipher', '~> 0.13.1'
176176
end
177177
```
178178

Diff for: Documentation/Planning.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ additions and Pull Requests, as well as to keep the Issues list clear of
66
enhancement requests so that bugs are more visible.
77

88
> ⚠ This document is currently not actively maintained. See
9-
> the [0.13.1 milestone](https://github.com/stephencelis/SQLite.swift/issues?q=is%3Aopen+is%3Aissue+milestone%3A0.13.1)
9+
> the [0.13.2 milestone](https://github.com/stephencelis/SQLite.swift/issues?q=is%3Aopen+is%3Aissue+milestone%3A0.13.2)
1010
> on Github for additional information about planned features for the next release.
1111
1212
## Roadmap

Diff for: README.md

+3-3
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.0")
139+
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.13.1")
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.0
163+
github "stephencelis/SQLite.swift" ~> 0.13.1
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.0'
194+
pod 'SQLite.swift', '~> 0.13.1'
195195
end
196196
```
197197

Diff for: 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.13.0"
3+
s.version = "0.13.1"
44
s.summary = "A type-safe, Swift-language layer over SQLite3."
55

66
s.description = <<-DESC

Diff for: SQLite.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1333,7 +1333,7 @@
13331333
INFOPLIST_FILE = "$(SRCROOT)/Sources/SQLite/Info.plist";
13341334
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
13351335
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1336-
MARKETING_VERSION = 0.13.0;
1336+
MARKETING_VERSION = 0.13.1;
13371337
PRODUCT_BUNDLE_IDENTIFIER = com.stephencelis.SQLite;
13381338
PRODUCT_NAME = SQLite;
13391339
SKIP_INSTALL = YES;
@@ -1356,7 +1356,7 @@
13561356
INFOPLIST_FILE = "$(SRCROOT)/Sources/SQLite/Info.plist";
13571357
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
13581358
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1359-
MARKETING_VERSION = 0.13.0;
1359+
MARKETING_VERSION = 0.13.1;
13601360
PRODUCT_BUNDLE_IDENTIFIER = com.stephencelis.SQLite;
13611361
PRODUCT_NAME = SQLite;
13621362
SKIP_INSTALL = YES;

0 commit comments

Comments
 (0)