Skip to content

Commit

Permalink
pkcs5 v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri committed Feb 23, 2021
1 parent 69afde7 commit 99e5579
Show file tree
Hide file tree
Showing 4 changed files with 10 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.

7 changes: 7 additions & 0 deletions pkcs5/CHANGELOG.md
Expand Up @@ -4,5 +4,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.1.1 (2021-02-23)
### Added
- Encryption support ([#293], [#295])

[#293]: https://github.com/RustCrypto/utils/pull/293
[#295]: https://github.com/RustCrypto/utils/pull/295

## 0.1.0 (2021-02-20)
- Initial release
2 changes: 1 addition & 1 deletion pkcs5/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "pkcs5"
version = "0.1.0" # Also update html_root_url in lib.rs when bumping this
version = "0.1.1" # Also update html_root_url in lib.rs when bumping this
description = """
Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #5:
Password-Based Cryptography Specification Version 2.1 (RFC 8018)
Expand Down
2 changes: 1 addition & 1 deletion pkcs5/src/lib.rs
Expand Up @@ -20,7 +20,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/pkcs5/0.1.0"
html_root_url = "https://docs.rs/pkcs5/0.1.1"
)]
#![forbid(unsafe_code)]
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]
Expand Down

0 comments on commit 99e5579

Please sign in to comment.