From a14058528d29a2d24de8b5fa2a4b740dc3329a6c Mon Sep 17 00:00:00 2001
From: Daiki Mizukami <tesaguriguma@gmail.com>
Date: Sun, 28 Jul 2024 21:06:46 +0900
Subject: [PATCH] Bump to v0.1.2

---
 Cargo.toml | 2 +-
 src/lib.rs | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Cargo.toml b/Cargo.toml
index 2d451f0..880a51c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "fmt-cmp"
-version = "0.1.1"
+version = "0.1.2"
 edition = "2018"
 rust-version = "1.41"
 description = "Traits and utilities for lexicographically comparing values in their `Display` representations"
diff --git a/src/lib.rs b/src/lib.rs
index e30afbc..5386b46 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,6 +1,6 @@
 //! Traits and utilities for lexicographically comparing values in their `Display` representations.
 
-#![doc(html_root_url = "https://docs.rs/fmt-cmp/0.1.1")]
+#![doc(html_root_url = "https://docs.rs/fmt-cmp/0.1.2")]
 #![cfg_attr(not(feature = "std"), no_std)]
 // Features.
 #![cfg_attr(fmt_cmp_semver_exempt, feature(min_specialization))]