Skip to content

Commit f0238a1

Browse files
authored
Bump versions to prereleases (#784)
Begins the next cycle of breaking changes for all `const-oid`/`der`-dependent crates in this repository: - `const-oid` v0.10.0-pre - `der`/`der_derive` v0.7.0-pre - `pkcs1` v0.5.0-pre - `pkcs5` v0.6.0-pre - `pkcs8` v0.10.0-pre - `sec1` v0.4.0-pre - `spki` v0.7.0-pre - `x509-cert` v0.2.0-pre
1 parent 0af0a41 commit f0238a1

File tree

12 files changed

+41
-41
lines changed

12 files changed

+41
-41
lines changed

Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

const-oid/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "const-oid"
3-
version = "0.9.1"
3+
version = "0.10.0-pre"
44
authors = ["RustCrypto Developers"]
55
license = "Apache-2.0 OR MIT"
66
description = """

der/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "der"
3-
version = "0.6.1"
3+
version = "0.7.0-pre"
44
description = """
55
Pure Rust embedded-friendly implementation of the Distinguished Encoding Rules
66
(DER) for Abstract Syntax Notation One (ASN.1) as described in ITU X.690 with
@@ -16,8 +16,8 @@ edition = "2021"
1616
rust-version = "1.57"
1717

1818
[dependencies]
19-
const-oid = { version = "0.9", optional = true, path = "../const-oid" }
20-
der_derive = { version = "0.6", optional = true, path = "derive" }
19+
const-oid = { version = "=0.10.0-pre", optional = true, path = "../const-oid" }
20+
der_derive = { version = "=0.7.0-pre", optional = true, path = "derive" }
2121
flagset = { version = "0.4.3", optional = true }
2222
pem-rfc7468 = { version = "0.6", optional = true, path = "../pem-rfc7468" }
2323
time = { version = "0.3.4", optional = true, default-features = false }

der/derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "der_derive"
3-
version = "0.6.1"
3+
version = "0.7.0-pre"
44
description = "Custom derive support for the `der` crate's `Choice` and `Sequence` traits"
55
authors = ["RustCrypto Developers"]
66
license = "Apache-2.0 OR MIT"

pkcs1/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pkcs1"
3-
version = "0.4.1"
3+
version = "0.5.0-pre"
44
description = """
55
Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #1:
66
RSA Cryptography Specifications Version 2.2 (RFC 8017)
@@ -15,17 +15,17 @@ edition = "2021"
1515
rust-version = "1.57"
1616

1717
[dependencies]
18-
der = { version = "0.6", features = ["oid"], path = "../der" }
19-
spki = { version = "0.6", path = "../spki" }
18+
der = { version = "=0.7.0-pre", features = ["oid"], path = "../der" }
19+
spki = { version = "=0.7.0-pre", path = "../spki" }
2020

2121
# optional dependencies
22-
pkcs8 = { version = "0.9", optional = true, default-features = false, path = "../pkcs8" }
22+
pkcs8 = { version = "=0.10.0-pre", optional = true, default-features = false, path = "../pkcs8" }
2323
zeroize = { version = "1", optional = true, default-features = false }
2424

2525
[dev-dependencies]
2626
hex-literal = "0.3"
2727
tempfile = "3"
28-
const-oid = { version = "0.9", path = "../const-oid", features = ["db"] }
28+
const-oid = { version = "0.10.0-pre", path = "../const-oid", features = ["db"] }
2929

3030
[features]
3131
alloc = ["der/alloc", "pkcs8/alloc", "zeroize/alloc"]

pkcs5/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pkcs5"
3-
version = "0.5.0"
3+
version = "0.6.0-pre"
44
description = """
55
Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #5:
66
Password-Based Cryptography Specification Version 2.1 (RFC 8018)
@@ -15,8 +15,8 @@ edition = "2021"
1515
rust-version = "1.57"
1616

1717
[dependencies]
18-
der = { version = "0.6", features = ["oid"], path = "../der" }
19-
spki = { version = "0.6", path = "../spki" }
18+
der = { version = "=0.7.0-pre", features = ["oid"], path = "../der" }
19+
spki = { version = "=0.7.0-pre", path = "../spki" }
2020

2121
# optional dependencies
2222
cbc = { version = "0.1.2", optional = true }

pkcs7/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ edition = "2021"
1515
rust-version = "1.57"
1616

1717
[dependencies]
18-
der = { version = "0.6", features = ["oid"], path = "../der" }
19-
spki = { version = "0.6", path = "../spki" }
18+
der = { version = "=0.7.0-pre", features = ["oid"], path = "../der" }
19+
spki = { version = "=0.7.0-pre", path = "../spki" }
2020

2121
[dev-dependencies]
2222
hex-literal = "0.3"

pkcs8/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pkcs8"
3-
version = "0.9.0"
3+
version = "0.10.0-pre"
44
description = """
55
Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #8:
66
Private-Key Information Syntax Specification (RFC 5208), with additional
@@ -16,12 +16,12 @@ edition = "2021"
1616
rust-version = "1.57"
1717

1818
[dependencies]
19-
der = { version = "0.6", features = ["oid"], path = "../der" }
20-
spki = { version = "0.6", path = "../spki" }
19+
der = { version = "=0.7.0-pre", features = ["oid"], path = "../der" }
20+
spki = { version = "=0.7.0-pre", path = "../spki" }
2121

2222
# optional dependencies
2323
rand_core = { version = "0.6", optional = true, default-features = false }
24-
pkcs5 = { version = "0.5", optional = true, path = "../pkcs5" }
24+
pkcs5 = { version = "=0.6.0-pre", optional = true, path = "../pkcs5" }
2525
subtle = { version = "2", optional = true, default-features = false }
2626

2727
[dev-dependencies]

sec1/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sec1"
3-
version = "0.3.0"
3+
version = "0.4.0-pre"
44
description = """
55
Pure Rust implementation of SEC1: Elliptic Curve Cryptography encoding formats
66
including ASN.1 DER-serialized private keys as well as the
@@ -17,9 +17,9 @@ rust-version = "1.57"
1717

1818
[dependencies]
1919
base16ct = { version = "0.1.1", optional = true, default-features = false, path = "../base16ct" }
20-
der = { version = "0.6", optional = true, features = ["oid"], path = "../der" }
20+
der = { version = "=0.7.0-pre", optional = true, features = ["oid"], path = "../der" }
2121
generic-array = { version = "0.14.6", optional = true, default-features = false }
22-
pkcs8 = { version = "0.9", optional = true, default-features = false, path = "../pkcs8" }
22+
pkcs8 = { version = "=0.10.0-pre", optional = true, default-features = false, path = "../pkcs8" }
2323
serdect = { version = "0.1", optional = true, default-features = false, features = ["alloc"], path = "../serdect" }
2424
subtle = { version = "2", optional = true, default-features = false }
2525
zeroize = { version = "1", optional = true, default-features = false }

spki/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spki"
3-
version = "0.6.0"
3+
version = "0.7.0-pre"
44
description = """
55
X.509 Subject Public Key Info (RFC5280) describing public keys as well as their
66
associated AlgorithmIdentifiers (i.e. OIDs)
@@ -15,7 +15,7 @@ edition = "2021"
1515
rust-version = "1.57"
1616

1717
[dependencies]
18-
der = { version = "0.6", features = ["oid"], path = "../der" }
18+
der = { version = "=0.7.0-pre", features = ["oid"], path = "../der" }
1919

2020
# Optional dependencies
2121
sha2 = { version = "0.10", optional = true, default-features = false }

x509-cert/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "x509-cert"
3-
version = "0.1.1"
3+
version = "0.2.0-pre"
44
description = """
55
Pure Rust implementation of the X.509 Public Key Infrastructure Certificate
66
format as described in RFC 5280
@@ -15,10 +15,10 @@ edition = "2021"
1515
rust-version = "1.56"
1616

1717
[dependencies]
18-
const-oid = { version = "0.9", features = ["db"], path = "../const-oid" }
19-
der = { version = "0.6", features = ["derive", "alloc", "flagset"], path = "../der" }
18+
const-oid = { version = "=0.10.0-pre", features = ["db"], path = "../const-oid" }
19+
der = { version = "=0.7.0-pre", features = ["derive", "alloc", "flagset"], path = "../der" }
2020
flagset = { version = "0.4.3" }
21-
spki = { version = "0.6", path = "../spki" }
21+
spki = { version = "=0.7.0-pre", path = "../spki" }
2222

2323
[dev-dependencies]
2424
hex-literal = "0.3"

x509-ocsp/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ edition = "2021"
1515
rust-version = "1.57"
1616

1717
[dependencies]
18-
der = { version = "0.6", features = ["oid", "derive", "alloc"], path = "../der" }
19-
x509-cert = { version = "0.1", path = "../x509-cert" }
20-
const-oid = { version = "0.9", path = "../const-oid" }
21-
spki = { version = "0.6", path = "../spki" }
18+
der = { version = "=0.7.0-pre", features = ["oid", "derive", "alloc"], path = "../der" }
19+
x509-cert = { version = "=0.2.0-pre", path = "../x509-cert" }
20+
const-oid = { version = "=0.10.0-pre", path = "../const-oid" }
21+
spki = { version = "=0.7.0-pre", path = "../spki" }
2222

2323
[dev-dependencies]
2424
hex-literal = "0.3"

0 commit comments

Comments
 (0)