Skip to content

Commit

Permalink
hex-literal: release v0.3.4 (#667)
Browse files Browse the repository at this point in the history
  • Loading branch information
newpavlov committed Nov 11, 2021
1 parent 59ab43f commit ecba6bd
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 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.

15 changes: 9 additions & 6 deletions hex-literal/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,20 @@ 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).

## [UNRELEASED]
## 0.3.4 (2021-11-11)
### Changed
- Provide more info in `panic!` messages
- Minor changes in the comments filtration code
- Provide more info in `panic!` messages ([#664])
- Minor changes in the comments filtration code ([#666])

### Added
- More tests for `hex!()` macro
- More internal documentation
- New tests for the `hex!()` macro and internal documentation ([#664])

### Fixed
- Make `hex!()` error when forward slash encountered as last byte
- Make `hex!()` error when forward slash encountered as last byte ([#665])

[#664]: https://github.com/RustCrypto/utils/pull/664
[#665]: https://github.com/RustCrypto/utils/pull/665
[#666]: https://github.com/RustCrypto/utils/pull/666

## 0.3.3 (2021-07-17)
### Added
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.3" # Also update html_root_url in lib.rs when bumping this
version = "0.3.4" # 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 @@ -49,7 +49,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.3"
html_root_url = "https://docs.rs/hex-literal/0.3.4"
)]

mod comments;
Expand Down

0 comments on commit ecba6bd

Please sign in to comment.