Skip to content

Commit 16105c1

Browse files
authored
mcf v0.6.0 (#2253)
1 parent 56b568c commit 16105c1

File tree

4 files changed

+29
-3
lines changed

4 files changed

+29
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mcf/CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,32 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## 0.6.0 (2026-03-08)
8+
NOTE: v0.3 - v0.5 skipped to sync version numbers with the `password-hash` crate.
9+
10+
### Added
11+
- `Display` impl for `PasswordHashRef` ([#2114])
12+
- `PasswordHash::push_displayable` ([#2115])
13+
- `PasswordHash::as_password_hash_ref` method ([#2117])
14+
- `Base64::B64` alphabet ([#2152])
15+
- `Base64::Pbkdf2` alphabet ([#2168])
16+
17+
### Changed
18+
- `Error` enum ([#2119])
19+
- Rename `Base64::ShaCrypt` to `Base64::Crypt` replacing old alphabet ([#2134])
20+
21+
### Removed
22+
- `PasswordHashRef` lifetime ([#2116])
23+
24+
[#2114]: https://github.com/RustCrypto/formats/pull/2114
25+
[#2115]: https://github.com/RustCrypto/formats/pull/2115
26+
[#2116]: https://github.com/RustCrypto/formats/pull/2116
27+
[#2117]: https://github.com/RustCrypto/formats/pull/2117
28+
[#2119]: https://github.com/RustCrypto/formats/pull/2119
29+
[#2134]: https://github.com/RustCrypto/formats/pull/2134
30+
[#2152]: https://github.com/RustCrypto/formats/pull/2152
31+
[#2168]: https://github.com/RustCrypto/formats/pull/2168
32+
733
## 0.2.0 (2025-09-07)
834
### Added
935
- `(Try)From` impls for `PasswordHash` <=> `String` ([#2027])

mcf/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mcf"
3-
version = "0.6.0-rc.3"
3+
version = "0.6.0"
44
authors = ["RustCrypto Developers"]
55
edition = "2024"
66
rust-version = "1.85"

mcf/LICENSE-MIT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2025 The RustCrypto Project Developers
1+
Copyright (c) 2025-2026 The RustCrypto Project Developers
22

33
Permission is hereby granted, free of charge, to any
44
person obtaining a copy of this software and associated

0 commit comments

Comments
 (0)