Skip to content

Commit 3c21c8d

Browse files
committed
Added release notes to the CHANGELOG and bumped the version to 3.2.1
1 parent 524f3b4 commit 3c21c8d

File tree

5 files changed

+29
-7
lines changed

5 files changed

+29
-7
lines changed

CHANGELOG.md

+23-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55

66
#### 3.x Releases
77

8-
- `3.2.x` Releases - [3.2.0](#320)
8+
- `3.2.x` Releases - [3.2.0](#320) | | [3.2.1](#321)
99
- `3.1.x` Releases - [3.1.0](#310)
1010
- `3.0.x` Releases - [3.0.0](#300) | [3.0.1](#301)
1111

@@ -33,6 +33,28 @@ All notable changes to this project will be documented in this file.
3333

3434
---
3535

36+
## [3.2.1](https://github.com/Nike-Inc/SQift/releases/tag/3.2.1)
37+
38+
Released on 2018-09-17. All issues associated with this milestone can be found using this
39+
[filter](https://github.com/Nike-Inc/SQift/milestone/6?closed=1).
40+
41+
#### Added
42+
43+
- An internal initializer to `SQLiteError` to assist in error mocking for testing.
44+
- Added by [Christian Noon](https://github.com/cnoon).
45+
46+
#### Updated
47+
48+
- The Xcode project to use Xcode 9.3 compatibility mode.
49+
- Updated by [Christian Noon](https://github.com/cnoon) in Pull Request
50+
[#10](https://github.com/Nike-Inc/SQift/pull/10).
51+
- The Xcode project to support Xcode 10 and Swift 4.2.
52+
- Updated by [Christian Noon](https://github.com/cnoon) in Pull Request
53+
[#10](https://github.com/Nike-Inc/SQift/pull/10).
54+
- The Travis-CI YAML file to use `bundler` and Xcode 10.
55+
- Updated by [Christian Noon](https://github.com/cnoon) in Pull Request
56+
[#10](https://github.com/Nike-Inc/SQift/pull/10).
57+
3658
## [3.2.0](https://github.com/Nike-Inc/SQift/releases/tag/3.2.0)
3759

3860
Released on 2018-05-02. All issues associated with this milestone can be found using this

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ SQift is a lightweight Swift wrapper for SQLite.
3030
## Requirements
3131

3232
- iOS 9.0+, macOS 10.11+, tvOS 9.0+, watchOS 2.0+
33-
- Xcode 9.0+
34-
- Swift 4.0+
33+
- Xcode 9.3+
34+
- Swift 4.1+
3535

3636
## Communication
3737

SQift.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
Pod::Spec.new do |s|
22
s.name = "SQift"
3-
s.version = "3.2.0"
3+
s.version = "3.2.1"
44
s.license = "MIT"
55
s.summary = "A lightweight Swift wrapper for SQLite."
66
s.homepage = "https://github.com/Nike-Inc/SQift"
77
s.authors = { "Dave Camp" => "[email protected]", "Christian Noon" => "[email protected]" }
88

99
s.source = { :git => "https://github.com/Nike-Inc/SQift.git", :tag => s.version }
1010
s.source_files = "Source/**/*.swift"
11-
s.swift_version = '4.2'
11+
s.swift_version = "4.2"
1212

1313
s.ios.deployment_target = "9.0"
1414
s.osx.deployment_target = "10.11"

Source/Supporting Files/Info-tvOS.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>3.2.0</string>
18+
<string>3.2.1</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

Source/Supporting Files/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>3.2.0</string>
18+
<string>3.2.1</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)