From d38e1c494fc6ffc30dabbedec9d0290f12733047 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 15 Jul 2023 13:16:02 -0700 Subject: [PATCH] Release 0.1.4 --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 14d08ba..4265386 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "basic-toml" -version = "0.1.3" +version = "0.1.4" authors = ["Alex Crichton ", "David Tolnay "] categories = ["config", "encoding", "parser-implementations"] description = "Minimal TOML library with few dependencies" diff --git a/src/lib.rs b/src/lib.rs index 1f13ebb..ea137a8 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -113,7 +113,7 @@ //! //! TOML's date and time syntax are not supported. -#![doc(html_root_url = "https://docs.rs/basic-toml/0.1.3")] +#![doc(html_root_url = "https://docs.rs/basic-toml/0.1.4")] #![deny(missing_docs)] #![allow( clippy::bool_to_int_with_if,