Skip to content

Commit

Permalink
Fix doc build on docs.rs for block-padding and inout (#733)
Browse files Browse the repository at this point in the history
  • Loading branch information
newpavlov authored Feb 10, 2022
1 parent d1efec5 commit c49cca2
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 3 deletions.
6 changes: 6 additions & 0 deletions block-padding/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +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.3.1 (2022-02-10)
### Fixed
- Fix doc build on docs.rs by optionally enabling the `doc_cfg` feature ([#733])

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

## 0.3.0 (2022-02-10)
### Added
- `Iso10126` padding algorithm ([#643])
Expand Down
2 changes: 1 addition & 1 deletion block-padding/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "block-padding"
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 = "Padding and unpadding of messages divided into blocks."
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand Down
1 change: 1 addition & 0 deletions block-padding/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/6ee8e381/logo.svg",
html_root_url = "https://docs.rs/block-padding/0.3.0"
)]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![warn(missing_docs, rust_2018_idioms)]

#[cfg(feature = "std")]
Expand Down
6 changes: 6 additions & 0 deletions inout/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +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 (2022-02-10)
### Fixed
- Fix doc build on docs.rs by optionally enabling the `doc_cfg` feature ([#733])

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

## 0.1.0 (2022-02-10)
- Initial release ([#675])

Expand Down
2 changes: 1 addition & 1 deletion inout/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "inout"
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 = "Custom reference types for code generic over in-place and buffer-to-buffer modes of operation."
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand Down
3 changes: 2 additions & 1 deletion inout/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@
#![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/inout/0.1.0"
html_root_url = "https://docs.rs/inout/0.1.1"
)]
#![allow(clippy::needless_lifetimes)]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![warn(missing_docs, rust_2018_idioms)]

#[cfg(feature = "std")]
Expand Down

0 comments on commit c49cca2

Please sign in to comment.