Skip to content

Commit

Permalink
sec1 v0.7.0 (#905)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri committed Feb 27, 2023
1 parent 952a7d8 commit 1696e70
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 5 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.

23 changes: 23 additions & 0 deletions sec1/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,29 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.7.0 (2023-02-26)
### Changed
- MSRV 1.65 ([#805])
- Bump `serdect` to v0.2 ([#893])
- Bump `der` dependency to v0.7 ([#899])
- Bump `spki` dependency to v0.7 ([#900])
- Bump `pkcs8` to v0.10 ([#902])

[#805]: https://github.com/RustCrypto/formats/pull/805
[#893]: https://github.com/RustCrypto/formats/pull/893
[#899]: https://github.com/RustCrypto/formats/pull/899
[#900]: https://github.com/RustCrypto/formats/pull/900
[#902]: https://github.com/RustCrypto/formats/pull/902

## 0.6.0 (Skipped)
- Skipped to synchronize version number with `der` and `spki`

## 0.5.0 (Skipped)
- Skipped to synchronize version number with `der` and `spki`

## 0.4.0 (Skipped)
- Skipped to synchronize version number with `der` and `spki`

## 0.3.0 (2022-05-08)
### Added
- Make `der` feature optional but on-by-default ([#497])
Expand Down
9 changes: 5 additions & 4 deletions sec1/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sec1"
version = "0.4.0"
version = "0.7.0"
description = """
Pure Rust implementation of SEC1: Elliptic Curve Cryptography encoding formats
including ASN.1 DER-serialized private keys as well as the
Expand Down Expand Up @@ -31,10 +31,11 @@ tempfile = "3"
[features]
default = ["der", "point"]
alloc = ["der/alloc", "pkcs8/alloc", "zeroize/alloc"]
std = ["alloc", "der?/std"]

pem = ["alloc", "der/pem", "pkcs8/pem"]
point = ["base16ct", "generic-array"]
serde = ["serdect"]
std = ["der/std", "alloc"]
point = ["dep:base16ct", "dep:generic-array"]
serde = ["dep:serdect"]

[package.metadata.docs.rs]
all-features = true
Expand Down

0 comments on commit 1696e70

Please sign in to comment.