Skip to content

Commit

Permalink
hex-literal: release v0.3.2 (#513)
Browse files Browse the repository at this point in the history
  • Loading branch information
newpavlov committed Jul 2, 2021
1 parent 4ea37fa commit 80d7e3a
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 11 deletions.
18 changes: 9 additions & 9 deletions 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 hex-literal/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.2 (2021-07-02)
### Added
- Allow line (`//`) and block (`/* */`) comments ([#512])

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

## 0.3.1 (2020-08-01)
### Added
- Documentation for the `hex!` macro ([#73])
Expand Down
2 changes: 1 addition & 1 deletion hex-literal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hex-literal"
version = "0.3.1" # Also update html_root_url in lib.rs when bumping this
version = "0.3.2" # Also update html_root_url in lib.rs when bumping this
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
description = "Procedural macro for converting hexadecimal string to byte array at compile time."
Expand Down
2 changes: 1 addition & 1 deletion hex-literal/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,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/hex-literal/0.3.1"
html_root_url = "https://docs.rs/hex-literal/0.3.2"
)]

mod comments;
Expand Down

0 comments on commit 80d7e3a

Please sign in to comment.