Skip to content

Commit d1d9e6f

Browse files
committed
Updated changelog, readme, and Cargo.toml for v0.13
1 parent ba4014a commit d1d9e6f

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## Unreleased
7+
## [0.13.0] - 2025-02-19
8+
9+
### Changes
810

911
* Made `PskBundle` require an explicit constructor that performs validation on inputs
12+
* Updated `rand` and `rand_core` to 0.9
1013

1114
## [0.12.0] - 2024-07-03
1215

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ repository = "https://github.com/rozbb/rust-hpke"
44
documentation = "https://docs.rs/hpke"
55
description = "An implementation of the HPKE hybrid encryption standard (RFC 9180) in pure Rust"
66
readme = "README.md"
7-
version = "0.12.0"
7+
version = "0.13.0"
88
authors = ["Michael Rosenberg <[email protected]>"]
99
edition = "2021"
1010
license = "MIT/Apache-2.0"

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,11 @@ See the [client-server](examples/client_server.rs) example for an idea of how to
6464
Breaking changes
6565
----------------
6666

67+
### Breaking changes in v0.13
68+
69+
* `PskBundle` now has a constructor that validates that the inputs are either both empty or nonempty.
70+
* `rand_core` was updated to v0.9
71+
6772
### Breaking changes in v0.12
6873

6974
The `serde_impls` feature was removed. If you were using this and require backwards compatible serialization/deserialization, see the wiki page [here](https://github.com/rozbb/rust-hpke/wiki/Migrating-away-from-the-serde_impls-feature).

0 commit comments

Comments
 (0)