Skip to content

Commit

Permalink
apply version updates (#137)
Browse files Browse the repository at this point in the history
Co-authored-by: thibault-martinez <thibault-martinez@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and thibault-martinez authored May 12, 2022
1 parent 8454c9b commit d912d0e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 9 deletions.
6 changes: 0 additions & 6 deletions .changes/add-aes-cbc.md

This file was deleted.

5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## \[0.11.0]

- Add AES-CBC algorithms (`Aes128CbcHmac256`, `Aes192CbcHmac384`, `Aes256CbcHmac512`).
- [8454c9b](https://www.github.com/iotaledger/crypto.rs/commit/8454c9b8279bd40ef4e5b20b8dad496b21a269fc) Add AES-CBC ([#41](https://www.github.com/iotaledger/crypto.rs/pull/41)) on 2022-05-12

## \[0.10.0]

- Bump version minor to fix https://github.com/iotaledger/bee/issues/1360
Expand Down
13 changes: 10 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iota-crypto"
version = "0.10.0"
version = "0.11.0"
license = "Apache-2.0"
authors = [
"Gustav Behm <gustav.behm@iota.org>",
Expand All @@ -25,9 +25,16 @@ name = "crypto"
[features]
default = [ ]
std = [ ]
aes-cbc = [ "aes-crate", "block-modes", "cipher", "hmac", "sha", "subtle" ]
aes-cbc = [
"aes-crate",
"block-modes",
"cipher",
"hmac",
"sha",
"subtle"
]
aes-kw = [ "aes-crate" ]
aes-gcm = [ "aes-gcm-crate", "cipher"]
aes-gcm = [ "aes-gcm-crate", "cipher" ]
chacha = [ "chacha20poly1305", "cipher" ]
ed25519 = [ "ed25519-zebra" ]
x25519 = [ "x25519-dalek", "curve25519-dalek" ]
Expand Down

0 comments on commit d912d0e

Please sign in to comment.