Skip to content

Commit

Permalink
cipher v0.2.0 (#338)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri authored Oct 15, 2020
1 parent 5fcffeb commit 9a55abc
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions cipher/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.2.0 (2020-10-15)
### Changed
- Unify `block-cipher` and `stream-cipher` into `cipher` ([#337])

[#337]: https://github.com/RustCrypto/traits/pull/337

## 0.1.1 (2015-06-25)

## 0.1.0 (2015-06-24)
Expand Down
2 changes: 1 addition & 1 deletion cipher/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "cipher"
description = "Traits for describing block ciphers and stream ciphers"
version = "0.2.0-pre"
version = "0.2.0"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion crypto-mac/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ categories = ["cryptography", "no-std"]

[dependencies]
generic-array = "0.14"
cipher = { version = "=0.2.0-pre", optional = true, path = "../cipher" }
cipher = { version = "0.2", optional = true, path = "../cipher" }
subtle = { version = "2", default-features = false }
blobby = { version = "0.3", optional = true }

Expand Down
2 changes: 1 addition & 1 deletion cryptography/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ edition = "2018"

[dependencies]
aead = { version = "0.3", optional = true, path = "../aead" }
cipher = { version = "=0.2.0-pre", optional = true, path = "../cipher" }
cipher = { version = "0.2", optional = true, path = "../cipher" }
digest = { version = "0.9", optional = true, path = "../digest" }
elliptic-curve = { version = "0.6", optional = true, path = "../elliptic-curve" }
mac = { version = "=0.10.0-pre", package = "crypto-mac", optional = true, path = "../crypto-mac" }
Expand Down

0 comments on commit 9a55abc

Please sign in to comment.