Skip to content

Commit

Permalink
Added release notes to the CHANGELOG and bumped the version to 3.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cnoon committed Sep 17, 2018
1 parent 524f3b4 commit 3c21c8d
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 7 deletions.
24 changes: 23 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.

#### 3.x Releases

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

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

---

## [3.2.1](https://github.com/Nike-Inc/SQift/releases/tag/3.2.1)

Released on 2018-09-17. All issues associated with this milestone can be found using this
[filter](https://github.com/Nike-Inc/SQift/milestone/6?closed=1).

#### Added

- An internal initializer to `SQLiteError` to assist in error mocking for testing.
- Added by [Christian Noon](https://github.com/cnoon).

#### Updated

- The Xcode project to use Xcode 9.3 compatibility mode.
- Updated by [Christian Noon](https://github.com/cnoon) in Pull Request
[#10](https://github.com/Nike-Inc/SQift/pull/10).
- The Xcode project to support Xcode 10 and Swift 4.2.
- Updated by [Christian Noon](https://github.com/cnoon) in Pull Request
[#10](https://github.com/Nike-Inc/SQift/pull/10).
- The Travis-CI YAML file to use `bundler` and Xcode 10.
- Updated by [Christian Noon](https://github.com/cnoon) in Pull Request
[#10](https://github.com/Nike-Inc/SQift/pull/10).

## [3.2.0](https://github.com/Nike-Inc/SQift/releases/tag/3.2.0)

Released on 2018-05-02. All issues associated with this milestone can be found using this
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ SQift is a lightweight Swift wrapper for SQLite.
## Requirements

- iOS 9.0+, macOS 10.11+, tvOS 9.0+, watchOS 2.0+
- Xcode 9.0+
- Swift 4.0+
- Xcode 9.3+
- Swift 4.1+

## Communication

Expand Down
4 changes: 2 additions & 2 deletions SQift.podspec
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
Pod::Spec.new do |s|
s.name = "SQift"
s.version = "3.2.0"
s.version = "3.2.1"
s.license = "MIT"
s.summary = "A lightweight Swift wrapper for SQLite."
s.homepage = "https://github.com/Nike-Inc/SQift"
s.authors = { "Dave Camp" => "[email protected]", "Christian Noon" => "[email protected]" }

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

s.ios.deployment_target = "9.0"
s.osx.deployment_target = "10.11"
Expand Down
2 changes: 1 addition & 1 deletion Source/Supporting Files/Info-tvOS.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>3.2.0</string>
<string>3.2.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Source/Supporting Files/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>3.2.0</string>
<string>3.2.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit 3c21c8d

Please sign in to comment.