From 06b55bc0990679958d92baec545a6cd79c6e4fa7 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Mon, 29 Jul 2024 21:25:55 -0700 Subject: [PATCH] Release 0.1.14 --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 501ec24..14e8190 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "enumn" -version = "0.1.13" +version = "0.1.14" authors = ["David Tolnay "] categories = ["rust-patterns", "no-std", "no-std::no-alloc"] description = "Convert number to enum" diff --git a/src/lib.rs b/src/lib.rs index eedb497..d658748 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -105,7 +105,7 @@ //! //! Here `Letter::n(65)` would return `Some(Letter::A)`. -#![doc(html_root_url = "https://docs.rs/enumn/0.1.13")] +#![doc(html_root_url = "https://docs.rs/enumn/0.1.14")] #![allow( clippy::missing_panics_doc, clippy::needless_doctest_main,