Skip to content

Commit ecba6bd

Browse files
authored
hex-literal: release v0.3.4 (#667)
1 parent 59ab43f commit ecba6bd

File tree

4 files changed

+12
-9
lines changed

4 files changed

+12
-9
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

hex-literal/CHANGELOG.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,20 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

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

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

1615
### Fixed
17-
- Make `hex!()` error when forward slash encountered as last byte
16+
- Make `hex!()` error when forward slash encountered as last byte ([#665])
17+
18+
[#664]: https://github.com/RustCrypto/utils/pull/664
19+
[#665]: https://github.com/RustCrypto/utils/pull/665
20+
[#666]: https://github.com/RustCrypto/utils/pull/666
1821

1922
## 0.3.3 (2021-07-17)
2023
### Added

hex-literal/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hex-literal"
3-
version = "0.3.3" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.3.4" # Also update html_root_url in lib.rs when bumping this
44
authors = ["RustCrypto Developers"]
55
license = "MIT OR Apache-2.0"
66
description = "Procedural macro for converting hexadecimal string to byte array at compile time."

hex-literal/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
#![doc(
5050
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
5151
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
52-
html_root_url = "https://docs.rs/hex-literal/0.3.3"
52+
html_root_url = "https://docs.rs/hex-literal/0.3.4"
5353
)]
5454

5555
mod comments;

0 commit comments

Comments
 (0)