Skip to content

Commit

Permalink
base64ct v0.1.2 (#240)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri committed Feb 1, 2021
1 parent ca602ad commit 9d934b4
Show file tree
Hide file tree
Showing 4 changed files with 16 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.

13 changes: 13 additions & 0 deletions base64ct/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@ 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.1.2 (2021-01-31)
### Added
- bcrypt encoding ([#237])
- `crypt(3)` encoding ([#239])

### Changed
- Internal refactoring ([#235], [#236])

[#235]: https://github.com/RustCrypto/utils/pull/235
[#236]: https://github.com/RustCrypto/utils/pull/236
[#237]: https://github.com/RustCrypto/utils/pull/237
[#239]: https://github.com/RustCrypto/utils/pull/239

## 0.1.1 (2021-01-27)
- Minor code improvements ([#234])

Expand Down
2 changes: 1 addition & 1 deletion base64ct/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "base64ct"
version = "0.1.1" # Also update html_root_url in lib.rs when bumping this
version = "0.1.2" # Also update html_root_url in lib.rs when bumping this
description = """
Pure Rust implementation Base64 (RFC 4648) implemented without data-dependent
branches/LUTs thereby providing portable "best effort" constant-time operation
Expand Down
2 changes: 1 addition & 1 deletion base64ct/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
#![doc(
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
html_root_url = "https://docs.rs/base64ct/0.1.1"
html_root_url = "https://docs.rs/base64ct/0.1.2"
)]
#![warn(missing_docs, rust_2018_idioms)]

Expand Down

0 comments on commit 9d934b4

Please sign in to comment.