Skip to content

Commit e11aed5

Browse files
committed
Bump version num & finalize new changelog section
1 parent 4d9b291 commit e11aed5

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ If needed, pluralize to `Tasks`, `PRs` or `Authors` and list multiple entries se
1919

2020
## [Unreleased]
2121
### Added
22-
- Added new convenience `encrypt(key:)` and `decrypt(key:)` functions to `String` type for platforms supporting `CryptoKit`. Uses AES.GCM algorithm for encryption.
23-
Author: [Cihat Gündüz](https://github.com/Jeehut)
22+
- None.
2423
### Changed
2524
- None.
2625
### Deprecated
@@ -32,6 +31,11 @@ If needed, pluralize to `Tasks`, `PRs` or `Authors` and list multiple entries se
3231
### Security
3332
- None.
3433

34+
## [3.4.0] - 2021-09-28
35+
### Added
36+
- Added new convenience `encrypt(key:)` and `decrypt(key:)` functions to `String` type for platforms supporting `CryptoKit`. Uses AES.GCM algorithm for encryption.
37+
Author: [Cihat Gündüz](https://github.com/Jeehut)
38+
3539
## [3.3.0] - 2021-01-16
3640
### Added
3741
- Added `round(fractionDigits:rule:)` & `rounded(fractionDigits:rule:)` methods to `Double` type.

HandySwift.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22

33
s.name = "HandySwift"
4-
s.version = "3.3.0"
4+
s.version = "3.4.0"
55
s.summary = "Handy Swift features that didn't make it into the Swift standard library"
66

77
s.description = <<-DESC

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
alt="Coverage"/>
1414
</a>
1515
<a href="https://github.com/Flinesoft/HandySwift/releases">
16-
<img src="https://img.shields.io/badge/Version-3.3.0-blue.svg"
17-
alt="Version: 3.3.0">
16+
<img src="https://img.shields.io/badge/Version-3.4.0-blue.svg"
17+
alt="Version: 3.4.0">
1818
</a>
1919
<img src="https://img.shields.io/badge/Swift-5.1-FFAC45.svg" alt="Swift: 5.1">
2020
<img src="https://img.shields.io/badge/Platforms-iOS%20%7C%20tvOS%20%7C%20macOS%20%7C%20Linux-FF69B4.svg"
@@ -250,7 +250,7 @@ Decrypts this base64 encoded representation of encrypted data with the given key
250250
`@available(macOS 10.15, iOS 13, watchOS 6, tvOS 13, *)`
251251

252252
``` Swift
253-
encryptedString.decrypt(key: key) // => "Harry Potter is a 🧙"
253+
encryptedString.decrypt(key: key) // => "Harry Potter is a 🧙"
254254
```
255255

256256

Sources/SupportingFiles/Info.plist

Lines changed: 1 addition & 1 deletion
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.3.0</string>
18+
<string>3.4.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)