Skip to content

Commit 946f69e

Browse files
committed
Bump version number
1 parent 5680160 commit 946f69e

File tree

6 files changed

+22
-13
lines changed

6 files changed

+22
-13
lines changed

Diff for: CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
0.13.2 (25-01-2022), [diff][diff-0.13.2]
2+
========================================
3+
4+
* Closing bracket position ([#1100][])
5+
* Native user_version support in Connection ([#1105][])
6+
17
0.13.1 (17-11-2021), [diff][diff-0.13.1]
28
========================================
39

@@ -95,6 +101,7 @@
95101
[diff-0.12.2]: https://github.com/stephencelis/SQLite.swift/compare/0.12.0...0.12.2
96102
[diff-0.13.0]: https://github.com/stephencelis/SQLite.swift/compare/0.12.2...0.13.0
97103
[diff-0.13.1]: https://github.com/stephencelis/SQLite.swift/compare/0.13.0...0.13.1
104+
[diff-0.13.2]: https://github.com/stephencelis/SQLite.swift/compare/0.13.1...0.13.2
98105

99106
[#142]: https://github.com/stephencelis/SQLite.swift/issues/142
100107
[#315]: https://github.com/stephencelis/SQLite.swift/issues/315
@@ -133,3 +140,5 @@
133140
[#1077]: https://github.com/stephencelis/SQLite.swift/issues/1077
134141
[#1094]: https://github.com/stephencelis/SQLite.swift/pull/1094
135142
[#1095]: https://github.com/stephencelis/SQLite.swift/pull/1095
143+
[#1100]: https://github.com/stephencelis/SQLite.swift/pull/1100
144+
[#1105]: https://github.com/stephencelis/SQLite.swift/pull/1105

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.1")
84+
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.13.2")
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.1
105+
github "stephencelis/SQLite.swift" ~> 0.13.2
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.1'
135+
pod 'SQLite.swift', '~> 0.13.2'
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.1'
149+
pod 'SQLite.swift/standalone', '~> 0.13.2'
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.1'
159+
pod 'SQLite.swift/standalone', '~> 0.13.2'
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.1'
175+
pod 'SQLite.swift/SQLCipher', '~> 0.13.2'
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.2 milestone](https://github.com/stephencelis/SQLite.swift/issues?q=is%3Aopen+is%3Aissue+milestone%3A0.13.2)
9+
> the [0.13.3 milestone](https://github.com/stephencelis/SQLite.swift/issues?q=is%3Aopen+is%3Aissue+milestone%3A0.13.3)
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.1")
139+
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.13.2")
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.1
163+
github "stephencelis/SQLite.swift" ~> 0.13.2
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.1'
194+
pod 'SQLite.swift', '~> 0.13.2'
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.1"
3+
s.version = "0.13.2"
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.1;
1336+
MARKETING_VERSION = 0.13.2;
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.1;
1359+
MARKETING_VERSION = 0.13.2;
13601360
PRODUCT_BUNDLE_IDENTIFIER = com.stephencelis.SQLite;
13611361
PRODUCT_NAME = SQLite;
13621362
SKIP_INSTALL = YES;

0 commit comments

Comments
 (0)