password-auth v1.0.0 (#454)

This commit is contained in:
Tony Arcieri
2023-09-03 18:56:46 -06:00
committed by GitHub
parent d25ea610d9
commit 69356555a8
3 changed files with 7 additions and 3 deletions

2
Cargo.lock generated
View File

@@ -299,7 +299,7 @@ checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
[[package]]
name = "password-auth"
version = "0.3.0"
version = "1.0.0"
dependencies = [
"argon2",
"getrandom",

View File

@@ -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])

View File

@@ -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"