From dc47a5abc2d05a5f05366d3b4dc1f677570a4db8 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Mon, 17 Jan 2022 14:37:49 -0700 Subject: [PATCH] elliptic-curve: bump version to 0.12 prerelease (#893) 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. --- crypto/Cargo.lock | 2 +- crypto/Cargo.toml | 2 +- elliptic-curve/Cargo.lock | 2 +- elliptic-curve/Cargo.toml | 2 +- elliptic-curve/src/lib.rs | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/crypto/Cargo.lock b/crypto/Cargo.lock index 905a71d3e..296df354c 100644 --- a/crypto/Cargo.lock +++ b/crypto/Cargo.lock @@ -119,7 +119,7 @@ dependencies = [ [[package]] name = "elliptic-curve" -version = "0.11.9" +version = "0.12.0-pre" dependencies = [ "base16ct", "crypto-bigint", diff --git a/crypto/Cargo.toml b/crypto/Cargo.toml index 71be1bd64..266a0fbb1 100644 --- a/crypto/Cargo.toml +++ b/crypto/Cargo.toml @@ -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" } diff --git a/elliptic-curve/Cargo.lock b/elliptic-curve/Cargo.lock index b3896be8b..defe91c47 100644 --- a/elliptic-curve/Cargo.lock +++ b/elliptic-curve/Cargo.lock @@ -100,7 +100,7 @@ dependencies = [ [[package]] name = "elliptic-curve" -version = "0.11.9" +version = "0.12.0-pre" dependencies = [ "base16ct", "base64ct", diff --git a/elliptic-curve/Cargo.toml b/elliptic-curve/Cargo.toml index 4a19f40f3..14695fd39 100644 --- a/elliptic-curve/Cargo.toml +++ b/elliptic-curve/Cargo.toml @@ -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, diff --git a/elliptic-curve/src/lib.rs b/elliptic-curve/src/lib.rs index 32474e263..27a738536 100644 --- a/elliptic-curve/src/lib.rs +++ b/elliptic-curve/src/lib.rs @@ -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")]