Skip to content

Commit

Permalink
elliptic-curve v0.8.0-pre (#406)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri authored Dec 17, 2020
1 parent 6edfb14 commit 2aac343
Show file tree
Hide file tree
Showing 4 changed files with 4 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.

2 changes: 1 addition & 1 deletion crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ edition = "2018"
aead = { version = "0.3", optional = true, path = "../aead" }
cipher = { version = "=0.3.0-pre", optional = true, path = "../cipher" }
digest = { version = "0.9", optional = true, path = "../digest" }
elliptic-curve = { version = "0.7", optional = true, path = "../elliptic-curve" }
elliptic-curve = { version = "=0.8.0-pre", optional = true, path = "../elliptic-curve" }
mac = { version = "=0.11.0-pre", package = "crypto-mac", optional = true, path = "../crypto-mac" }
signature = { version = "1.2.0", optional = true, default-features = false, path = "../signature" }
universal-hash = { version = "0.4", optional = true, path = "../universal-hash" }
Expand Down
2 changes: 1 addition & 1 deletion elliptic-curve/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ General purpose Elliptic Curve Cryptography (ECC) support, including types
and traits for representing various elliptic curve forms, scalars, points,
and public/secret keys composed thereof.
"""
version = "0.7.1" # Also update html_root_url in lib.rs when bumping this
version = "0.8.0-pre" # Also update html_root_url in lib.rs when bumping this
authors = ["RustCrypto Developers"]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/RustCrypto/traits/tree/master/elliptic-curve"
Expand Down
2 changes: 1 addition & 1 deletion elliptic-curve/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#![doc(
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
html_root_url = "https://docs.rs/elliptic-curve/0.6.6"
html_root_url = "https://docs.rs/elliptic-curve/0.8.0-pre"
)]

#[cfg(feature = "alloc")]
Expand Down

0 comments on commit 2aac343

Please sign in to comment.