Skip to content

Commit

Permalink
sha-crypt v0.4.0 (#294)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri authored Mar 18, 2022
1 parent 48fad82 commit ed2bea2
Show file tree
Hide file tree
Showing 4 changed files with 9 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 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.4.0 (2022-03-18)
### Changed
- 2021 edition upgrade; MSRV 1.56 ([#284])

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

## 0.3.2 (2021-11-25)
### Changed
- Bump `sha2` dependency to v0.10 ([#254])
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.2" # Also update html_root_url in lib.rs when bumping this
version = "0.4.0"
description = """
Pure Rust implementation of the SHA-crypt password hash based on SHA-512
as implemented by the POSIX crypt C library
Expand Down
3 changes: 1 addition & 2 deletions sha-crypt/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@
#![cfg_attr(docsrs, feature(doc_cfg))]
#![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.2"
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg"
)]
#![deny(unsafe_code)]
#![warn(missing_docs, rust_2018_idioms)]
Expand Down

0 comments on commit ed2bea2

Please sign in to comment.