File tree 4 files changed +12
-9
lines changed 4 files changed +12
-9
lines changed Original file line number Diff line number Diff line change @@ -4,17 +4,20 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
7
- ## [ UNRELEASED ]
7
+ ## 0.3.4 (2021-11-11)
8
8
### 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 ] )
11
11
12
12
### Added
13
- - More tests for ` hex!() ` macro
14
- - More internal documentation
13
+ - New tests for the ` hex!() ` macro and internal documentation ([ #664 ] )
15
14
16
15
### 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
18
21
19
22
## 0.3.3 (2021-07-17)
20
23
### Added
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
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
4
4
authors = [" RustCrypto Developers" ]
5
5
license = " MIT OR Apache-2.0"
6
6
description = " Procedural macro for converting hexadecimal string to byte array at compile time."
Original file line number Diff line number Diff line change 49
49
#![ doc(
50
50
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg" ,
51
51
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 "
53
53
) ]
54
54
55
55
mod comments;
You can’t perform that action at this time.
0 commit comments