Skip to content

Commit

Permalink
sha-crypt v0.3.1 (#243)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri authored Sep 18, 2021
1 parent a62638a commit afa29a3
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 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 sha-crypt/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.1 (2021-09-17)
### Fixed
- Handle B64 decoding errors ([#242])

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

## 0.3.0 (2021-08-27)
### Changed
- Use `resolver = "2"`; MSRV 1.51+ ([#220])
Expand Down
2 changes: 1 addition & 1 deletion sha-crypt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sha-crypt"
version = "0.3.0" # Also update html_root_url in lib.rs when bumping this
version = "0.3.1" # Also update html_root_url in lib.rs when bumping this
description = """
Pure Rust implementation of the SHA-crypt password hash based on SHA-512
as implemented by the POSIX crypt C library
Expand Down
2 changes: 1 addition & 1 deletion sha-crypt/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,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/sha-crypt/0.3.0"
html_root_url = "https://docs.rs/sha-crypt/0.3.1"
)]
#![deny(unsafe_code)]
#![warn(missing_docs, rust_2018_idioms)]
Expand Down

0 comments on commit afa29a3

Please sign in to comment.