From e48794a1a144b8671ce7f259e879c16cb665f8f1 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sun, 3 Sep 2023 18:45:34 -0600 Subject: [PATCH] password-auth v1.0.0 --- Cargo.lock | 2 +- password-auth/CHANGELOG.md | 4 ++++ password-auth/Cargo.toml | 4 ++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d3b21087..1ce5cc26 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -299,7 +299,7 @@ checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" [[package]] name = "password-auth" -version = "0.3.0" +version = "1.0.0" dependencies = [ "argon2", "getrandom", diff --git a/password-auth/CHANGELOG.md b/password-auth/CHANGELOG.md index 6900e712..4ba597f6 100644 --- a/password-auth/CHANGELOG.md +++ b/password-auth/CHANGELOG.md @@ -5,6 +5,10 @@ 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). +## 1.0.0 (2023-09-03) + +No changes from v0.3.0. + ## 0.3.0 (2023-06-24) ### Added - Derive `Eq`/`PartialEq` on `*Error` ([#433]) diff --git a/password-auth/Cargo.toml b/password-auth/Cargo.toml index 3389af47..cf522dcd 100644 --- a/password-auth/Cargo.toml +++ b/password-auth/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "password-auth" -version = "0.3.0" +version = "1.0.0" description = """ Password authentication library with a focus on simplicity and ease-of-use, -with support for Argon2, PBKDF2, and scrypt password hashing algorithms +including support for Argon2, PBKDF2, and scrypt password hashing algorithms """ authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0"