Skip to content

Commit

Permalink
Update CHANGELOG.md for the 0.1.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxDesiatov committed Aug 27, 2020
1 parent aceeafa commit 06be38e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# 0.1.1 (27 August 2020)

This is a bugfix release that fixes incorrect padding applied to files of a certain size during decryption.

**Merged pull requests:**

- Fix padding in `ECMA376Agile.swift` ([#1](https://github.com/CoreOffice/CryptoOffice/pull/1)) via [@MaxDesiatov](https://github.com/MaxDesiatov)

# 0.1.0 (31 May 2020)

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

```swift
Expand Down Expand Up @@ -62,7 +62,7 @@ easy as adding it to the `dependencies` value of your `Package.swift`.
```swift
dependencies: [
.package(url: "https://github.com/CoreOffice/CryptoOffice.git",
.upToNextMinor(from: "0.1.0"))
.upToNextMinor(from: "0.1.1"))
]
```

Expand Down

0 comments on commit 06be38e

Please sign in to comment.