Skip to content

Commit

Permalink
elliptic-curve: bump version to 0.12 prerelease
Browse files Browse the repository at this point in the history
Switching over to making breaking changes again now that #883 is merged.

There are a number of other pent up breaking changes that have been
desired which we can now start working on.
  • Loading branch information
tarcieri committed Jan 17, 2022
1 parent 981af77 commit 7c2a058
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion crypto/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 @@ -22,7 +22,7 @@ members = ["."]
aead = { version = "0.4", optional = true, path = "../aead" }
cipher = { version = "0.3", optional = true }
digest = { version = "0.10", optional = true }
elliptic-curve = { version = "0.11", optional = true, path = "../elliptic-curve" }
elliptic-curve = { version = "0.12.0-pre", optional = true, path = "../elliptic-curve" }
mac = { version = "0.11", package = "crypto-mac", optional = true }
password-hash = { version = "0.3", optional = true, path = "../password-hash" }
signature = { version = "1.5", optional = true, default-features = false, path = "../signature" }
Expand Down
2 changes: 1 addition & 1 deletion elliptic-curve/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 elliptic-curve/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "elliptic-curve"
version = "0.11.9" # Also update html_root_url in lib.rs when bumping this
version = "0.12.0-pre" # Also update html_root_url in lib.rs when bumping this
description = """
General purpose Elliptic Curve Cryptography (ECC) support, including types
and traits for representing various elliptic curve forms, scalars, points,
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 @@ -5,7 +5,7 @@
#![doc(
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
html_root_url = "https://docs.rs/elliptic-curve/0.11.9"
html_root_url = "https://docs.rs/elliptic-curve/0.12.0-pre"
)]
#![doc = include_str!("../README.md")]

Expand Down

0 comments on commit 7c2a058

Please sign in to comment.