Skip to content

Commit 1a203dc

Browse files
authored
Merge pull request #217 from mattrubin/prepare-for-release
Prepare for 3.2.0 release
2 parents 5e55748 + 07b40c1 commit 1a203dc

File tree

4 files changed

+21
-5
lines changed

4 files changed

+21
-5
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22

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

5+
## [3.2.0][] (2019-09-20)
6+
7+
- Upgrade the source to compile with both Swift 4.2 and Swift 5.
8+
([#201](https://github.com/mattrubin/OneTimePassword/pull/201),
9+
[#202](https://github.com/mattrubin/OneTimePassword/pull/202),
10+
[#204](https://github.com/mattrubin/OneTimePassword/pull/204),
11+
[#209](https://github.com/mattrubin/OneTimePassword/pull/209),
12+
[#215](https://github.com/mattrubin/OneTimePassword/pull/215),
13+
[#216](https://github.com/mattrubin/OneTimePassword/pull/216))
14+
- 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.
15+
([#212](https://github.com/mattrubin/OneTimePassword/pull/212),
16+
[#206](https://github.com/mattrubin/OneTimePassword/pull/206))
17+
- Upgrade xcconfigs to enable new warnings introduced in Xcode 10.2
18+
([#203](https://github.com/mattrubin/OneTimePassword/pull/203))
19+
520
## [3.1.5][] (2019-04-11)
621
- Enable additional linting and CI testing.
722
([#196](https://github.com/mattrubin/OneTimePassword/pull/196),
@@ -175,6 +190,7 @@ Changes between prerelease versions of OneTimePassword version 2 can be found be
175190

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

193+
[3.2.0]: https://github.com/mattrubin/OneTimePassword/compare/3.1.5...3.2.0
178194
[3.1.5]: https://github.com/mattrubin/OneTimePassword/compare/3.1.4...3.1.5
179195
[3.1.4]: https://github.com/mattrubin/OneTimePassword/compare/3.1.3...3.1.4
180196
[3.1.3]: https://github.com/mattrubin/OneTimePassword/compare/3.1.2...3.1.3

OneTimePassword.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "OneTimePassword"
3-
s.version = "3.1.5"
3+
s.version = "3.2.0"
44
s.summary = "A small library for generating TOTP and HOTP one-time passwords."
55
s.homepage = "https://github.com/mattrubin/OneTimePassword"
66
s.license = "MIT"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The OneTimePassword library is the core of [Authenticator][]. It can generate bo
2323
Add the following line to your [Cartfile][]:
2424

2525
````config
26-
github "mattrubin/OneTimePassword" ~> 3.1
26+
github "mattrubin/OneTimePassword" ~> 3.2
2727
````
2828

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

4141
````ruby
42-
pod 'OneTimePassword', '~> 3.1'
42+
pod 'OneTimePassword', '~> 3.2'
4343
````
4444

4545
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.

Sources/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>3.1.5</string>
18+
<string>3.2.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>3.1.5</string>
22+
<string>3.2.0</string>
2323
<key>NSPrincipalClass</key>
2424
<string></string>
2525
</dict>

0 commit comments

Comments
 (0)