Skip to content

Commit 06be38e

Browse files
committed
Update CHANGELOG.md for the 0.1.1 release
1 parent aceeafa commit 06be38e

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# 0.1.1 (27 August 2020)
2+
3+
This is a bugfix release that fixes incorrect padding applied to files of a certain size during decryption.
4+
5+
**Merged pull requests:**
6+
7+
- Fix padding in `ECMA376Agile.swift` ([#1](https://github.com/CoreOffice/CryptoOffice/pull/1)) via [@MaxDesiatov](https://github.com/MaxDesiatov)
8+
19
# 0.1.0 (31 May 2020)
210

311
Initial release of CryptoOffice.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Using CryptoOffice is easy:
1414
1. Add `import CryptoOffice` at the top of a relevant Swift source file.
1515
2. Use `CryptoOfficeFile(path: String)` to create a new instance with a path to your encrypted file.
1616
3. Call `decrypt(password: String)` on it to get decrypted data.
17-
4. Parse the decrypted data with a library appropriate for that format
17+
4. Parse the decrypted data with a library appropriate for that format
1818
([CoreXLSX](https://github.com/CoreOffice/CoreXLSX) in this example).
1919

2020
```swift
@@ -62,7 +62,7 @@ easy as adding it to the `dependencies` value of your `Package.swift`.
6262
```swift
6363
dependencies: [
6464
.package(url: "https://github.com/CoreOffice/CryptoOffice.git",
65-
.upToNextMinor(from: "0.1.0"))
65+
.upToNextMinor(from: "0.1.1"))
6666
]
6767
```
6868

0 commit comments

Comments
 (0)