Skip to content

Commit

Permalink
argon2 v0.3.3 (#268)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri committed Jan 30, 2022
1 parent 0d6a208 commit 0360e46
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions argon2/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.3.3 (2022-01-30)
### Changed
- Make `Params::block_count()` public ([#258])

[#258]: https://github.com/RustCrypto/password-hashes/pull/258

## 0.3.2 (2021-12-07)
### Changed
- Bump `blake2` dependency to v0.10 ([#254])
Expand Down
2 changes: 1 addition & 1 deletion argon2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "argon2"
version = "0.3.2" # Also update html_root_url in lib.rs when bumping this
version = "0.3.3" # Also update html_root_url in lib.rs when bumping this
description = """
Pure Rust implementation of the Argon2 password hashing function with support
for the Argon2d, Argon2i, and Argon2id algorithmic variants
Expand Down
2 changes: 1 addition & 1 deletion argon2/LICENSE-MIT
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2021 The RustCrypto Project Developers
Copyright (c) 2021-2022 The RustCrypto Project Developers

Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
Expand Down
2 changes: 1 addition & 1 deletion argon2/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
#![doc(
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
html_root_url = "https://docs.rs/argon2/0.3.2"
html_root_url = "https://docs.rs/argon2/0.3.3"
)]
#![warn(rust_2018_idioms, missing_docs)]

Expand Down

0 comments on commit 0360e46

Please sign in to comment.