From 56b9d5efe58ca59905c5cdf2689527f81253f778 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Tue, 21 Apr 2026 17:12:43 -0600 Subject: [PATCH] yescrypt v0.1.0 --- Cargo.lock | 2 +- yescrypt/CHANGELOG.md | 3 +++ yescrypt/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9e80d384..6f1cf79e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -863,7 +863,7 @@ dependencies = [ [[package]] name = "yescrypt" -version = "0.1.0-rc.5" +version = "0.1.0" dependencies = [ "ctutils", "hex-literal", diff --git a/yescrypt/CHANGELOG.md b/yescrypt/CHANGELOG.md index 1d013ff9..61e815ab 100644 --- a/yescrypt/CHANGELOG.md +++ b/yescrypt/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-04-22) +Initial release diff --git a/yescrypt/Cargo.toml b/yescrypt/Cargo.toml index 86a06a91..372fa59c 100644 --- a/yescrypt/Cargo.toml +++ b/yescrypt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yescrypt" -version = "0.1.0-rc.5" +version = "0.1.0" description = "Pure Rust implementation of the yescrypt password-based key derivation function" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0"