Skip to content

Commit

Permalink
Release v0.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dbrgn committed Sep 4, 2023
1 parent 386fcf7 commit 3bc16ff
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,14 @@ Possible log types:

### Unreleased

### v0.16.0 (2023-09-04)

- [added] Expose encryption functions: `encrypt` and `encrypt_raw` (#59)
- [added] Support downloading of blobs (#65)
- [added] New `decrypt_file_data` helper function (#67)
- [changed] Remove `mime` dependency in favor of plain strings (#64)
- [changed] The API of `encrypt_file_data` has changed (#67)
- [changed] Add `MessageType::Other(u8)` variant (#58)

### v0.15.1 (2021-12-06)

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "threema-gateway"
version = "0.15.1"
version = "0.16.0"
authors = ["Danilo Bargen <mail@dbrgn.ch>"]
documentation = "https://docs.rs/threema-gateway"
repository = "https://github.com/dbrgn/threema-gateway-rs"
Expand Down
2 changes: 1 addition & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Set variables:

$ export VERSION=X.Y.Z
$ export GPG_KEY=EA456E8BAF0109429583EED83578F667F2F3A5FA
$ export GPG_KEY=20EE002D778AE197EF7D0D2CB993FF98A90C9AB1

Update version numbers:

Expand Down
2 changes: 1 addition & 1 deletion src/crypto.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ impl FromStr for RecipientKey {
}
}

/// Encrypt data for the recipient.
/// Encrypt raw data for the recipient.
pub fn encrypt_raw(
data: &[u8],
public_key: &PublicKey,
Expand Down

0 comments on commit 3bc16ff

Please sign in to comment.