From 9db159ba62d39710e99009e71689f058da85c90e Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sat, 11 Jul 2026 12:48:48 -0600 Subject: [PATCH] dhkem v0.1.0 Initial release --- Cargo.lock | 2 +- dhkem/CHANGELOG.md | 3 +++ dhkem/Cargo.toml | 2 +- dhkem/LICENSE-MIT | 2 +- dhkem/README.md | 2 +- 5 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 54a017cb..9e6db6b5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -360,7 +360,7 @@ dependencies = [ [[package]] name = "dhkem" -version = "0.1.0-rc.2" +version = "0.1.0" dependencies = [ "ctutils", "elliptic-curve", diff --git a/dhkem/CHANGELOG.md b/dhkem/CHANGELOG.md index 1d013ff9..e82b35ac 100644 --- a/dhkem/CHANGELOG.md +++ b/dhkem/CHANGELOG.md @@ -4,3 +4,6 @@ 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.1.0 (2026-07-11) +Initial release. diff --git a/dhkem/Cargo.toml b/dhkem/Cargo.toml index f427f965..a6e7da41 100644 --- a/dhkem/Cargo.toml +++ b/dhkem/Cargo.toml @@ -4,7 +4,7 @@ description = """ Pure Rust implementation of Key Encapsulation Mechanism (KEM) adapters for Elliptic Curve Diffie Hellman (ECDH) protocols """ -version = "0.1.0-rc.2" +version = "0.1.0" edition = "2024" rust-version = "1.85" license = "Apache-2.0 OR MIT" diff --git a/dhkem/LICENSE-MIT b/dhkem/LICENSE-MIT index c4c4d9d5..839f655c 100644 --- a/dhkem/LICENSE-MIT +++ b/dhkem/LICENSE-MIT @@ -1,4 +1,4 @@ -Copyright (c) 2024 RustCrypto Developers +Copyright (c) 2024-2026 RustCrypto Developers Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/dhkem/README.md b/dhkem/README.md index 4220005f..e3d2b839 100644 --- a/dhkem/README.md +++ b/dhkem/README.md @@ -1,4 +1,4 @@ -# [RustCrypto]: Diffie-Hellman-Based KEM +# [RustCrypto]: Diffie-Hellman-based KEM [![crate][crate-image]][crate-link] [![Docs][docs-image]][docs-link]