Skip to content

Commit dc47a5a

Browse files
authored
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.
1 parent 981af77 commit dc47a5a

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

crypto/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crypto/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ members = ["."]
2222
aead = { version = "0.4", optional = true, path = "../aead" }
2323
cipher = { version = "0.3", optional = true }
2424
digest = { version = "0.10", optional = true }
25-
elliptic-curve = { version = "0.11", optional = true, path = "../elliptic-curve" }
25+
elliptic-curve = { version = "0.12.0-pre", optional = true, path = "../elliptic-curve" }
2626
mac = { version = "0.11", package = "crypto-mac", optional = true }
2727
password-hash = { version = "0.3", optional = true, path = "../password-hash" }
2828
signature = { version = "1.5", optional = true, default-features = false, path = "../signature" }

elliptic-curve/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

elliptic-curve/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "elliptic-curve"
3-
version = "0.11.9" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.12.0-pre" # Also update html_root_url in lib.rs when bumping this
44
description = """
55
General purpose Elliptic Curve Cryptography (ECC) support, including types
66
and traits for representing various elliptic curve forms, scalars, points,

elliptic-curve/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#![doc(
66
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
77
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
8-
html_root_url = "https://docs.rs/elliptic-curve/0.11.9"
8+
html_root_url = "https://docs.rs/elliptic-curve/0.12.0-pre"
99
)]
1010
#![doc = include_str!("../README.md")]
1111

0 commit comments

Comments
 (0)