From 66c6226816f92581cb2acb779da6b2f81049fbb4 Mon Sep 17 00:00:00 2001
From: Artyom Pavlov <newpavlov@gmail.com>
Date: Sun, 2 Apr 2023 03:00:07 +0000
Subject: [PATCH] hex-literal: release v0.4.0 (#884)

---
 Cargo.lock               | 8 ++++----
 hex-literal/CHANGELOG.md | 2 +-
 hex-literal/Cargo.toml   | 2 +-
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/Cargo.lock b/Cargo.lock
index 47156007..b2421ab0 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -15,7 +15,7 @@ version = "0.11.0-pre"
 dependencies = [
  "crypto-common",
  "generic-array",
- "hex-literal 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
+ "hex-literal 0.3.4",
 ]
 
 [[package]]
@@ -85,12 +85,12 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
 [[package]]
 name = "hex-literal"
 version = "0.3.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7ebdb29d2ea9ed0083cd8cece49bbd968021bd99b0849edb4a9a7ee0fdf6a4e0"
 
 [[package]]
 name = "hex-literal"
-version = "0.3.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7ebdb29d2ea9ed0083cd8cece49bbd968021bd99b0849edb4a9a7ee0fdf6a4e0"
+version = "0.4.0"
 
 [[package]]
 name = "hybrid-array"
diff --git a/hex-literal/CHANGELOG.md b/hex-literal/CHANGELOG.md
index 338be64b..517eb2b9 100644
--- a/hex-literal/CHANGELOG.md
+++ b/hex-literal/CHANGELOG.md
@@ -4,7 +4,7 @@ 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.4.0 (2023-04-02)
 ### Changed
 - Disallow comments inside hex strings ([#816])
 - Migrate to 2021 edition and bump MSRV to 1.57 ([#816])
diff --git a/hex-literal/Cargo.toml b/hex-literal/Cargo.toml
index b704b6b9..a4062093 100644
--- a/hex-literal/Cargo.toml
+++ b/hex-literal/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "hex-literal"
-version = "0.3.4"
+version = "0.4.0"
 authors = ["RustCrypto Developers"]
 license = "MIT OR Apache-2.0"
 description = "Macro for converting hexadecimal string to a byte array at compile time"