Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 26 additions & 0 deletions sec1/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,32 @@ 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.8.0 (2026-03-10)
### Added
- `ctutils` feature ([#2150])

### Changed
- Migrate from `generic-array` to `hybrid-array` ([#1298])
- Use `core::error::Error` ([#1573])
- Blanket impl `ModulusSize` for all typenums ([#1650])
- Upgrade to edition 2024; bump MSRV to 1.85 ([#1666])
- Bump `serdect` to v0.4 ([#2008])
- Bump `base16ct` to v1 ([#2145])
- Bump `der` to v0.8 ([#2234])

### Removed
- Integration with `pkcs8` crate ([#1927])

[#1298]: https://github.com/RustCrypto/formats/pull/1298
[#1573]: https://github.com/RustCrypto/formats/pull/1573
[#1650]: https://github.com/RustCrypto/formats/pull/1650
[#1666]: https://github.com/RustCrypto/formats/pull/1666
[#1927]: https://github.com/RustCrypto/formats/pull/1927
[#2008]: https://github.com/RustCrypto/formats/pull/2008
[#2145]: https://github.com/RustCrypto/formats/pull/2145
[#2150]: https://github.com/RustCrypto/formats/pull/2150
[#2234]: https://github.com/RustCrypto/formats/pull/2234

## 0.7.3 (2023-07-16)
### Added
- Impl `Hash` for `EncodedPoint` ([#1102])
Expand Down
2 changes: 1 addition & 1 deletion sec1/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sec1"
version = "0.8.0-rc.13"
version = "0.8.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
2 changes: 1 addition & 1 deletion sec1/LICENSE-MIT
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2021-2025 The RustCrypto Project Developers
Copyright (c) 2021-2026 The RustCrypto Project Developers

Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
Expand Down
Loading