Skip to content

Commit

Permalink
Merge pull request #217 from mattrubin/prepare-for-release
Browse files Browse the repository at this point in the history
Prepare for 3.2.0 release
  • Loading branch information
mattrubin authored Sep 20, 2019
2 parents 5e55748 + 07b40c1 commit 1a203dc
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 5 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@

<!--## [In development][develop]-->

## [3.2.0][] (2019-09-20)

- Upgrade the source to compile with both Swift 4.2 and Swift 5.
([#201](https://github.com/mattrubin/OneTimePassword/pull/201),
[#202](https://github.com/mattrubin/OneTimePassword/pull/202),
[#204](https://github.com/mattrubin/OneTimePassword/pull/204),
[#209](https://github.com/mattrubin/OneTimePassword/pull/209),
[#215](https://github.com/mattrubin/OneTimePassword/pull/215),
[#216](https://github.com/mattrubin/OneTimePassword/pull/216))
- Update the SwiftLint configuration, and move the SwiftLint build phase to a separate dedicated target so that new lint errors do not interfere with consumers of the framework.
([#212](https://github.com/mattrubin/OneTimePassword/pull/212),
[#206](https://github.com/mattrubin/OneTimePassword/pull/206))
- Upgrade xcconfigs to enable new warnings introduced in Xcode 10.2
([#203](https://github.com/mattrubin/OneTimePassword/pull/203))

## [3.1.5][] (2019-04-11)
- Enable additional linting and CI testing.
([#196](https://github.com/mattrubin/OneTimePassword/pull/196),
Expand Down Expand Up @@ -175,6 +190,7 @@ Changes between prerelease versions of OneTimePassword version 2 can be found be

[develop]: https://github.com/mattrubin/OneTimePassword/compare/3.1.5...develop

[3.2.0]: https://github.com/mattrubin/OneTimePassword/compare/3.1.5...3.2.0
[3.1.5]: https://github.com/mattrubin/OneTimePassword/compare/3.1.4...3.1.5
[3.1.4]: https://github.com/mattrubin/OneTimePassword/compare/3.1.3...3.1.4
[3.1.3]: https://github.com/mattrubin/OneTimePassword/compare/3.1.2...3.1.3
Expand Down
2 changes: 1 addition & 1 deletion OneTimePassword.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "OneTimePassword"
s.version = "3.1.5"
s.version = "3.2.0"
s.summary = "A small library for generating TOTP and HOTP one-time passwords."
s.homepage = "https://github.com/mattrubin/OneTimePassword"
s.license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The OneTimePassword library is the core of [Authenticator][]. It can generate bo
Add the following line to your [Cartfile][]:

````config
github "mattrubin/OneTimePassword" ~> 3.1
github "mattrubin/OneTimePassword" ~> 3.2
````

Then run `carthage update OneTimePassword` to install the latest version of the framework.
Expand All @@ -39,7 +39,7 @@ Be sure to check the Carthage README file for the latest instructions on [adding
Add the following line to your [Podfile][]:

````ruby
pod 'OneTimePassword', '~> 3.1'
pod 'OneTimePassword', '~> 3.2'
````

OneTimePassword, like all pods written in Swift, can only be integrated as a framework. Make sure to add the line `use_frameworks!` to your Podfile or target to opt into frameworks instead of static libraries.
Expand Down
4 changes: 2 additions & 2 deletions Sources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>3.1.5</string>
<string>3.2.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>3.1.5</string>
<string>3.2.0</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
Expand Down

0 comments on commit 1a203dc

Please sign in to comment.