From 13d1f096ea32f85efd6b0fd8a9ebab6e93d2a891 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 16 Sep 2017 14:30:35 -0700 Subject: [PATCH] Release 0.3.4 --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6eb09b2..62b8fe6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "itoa" -version = "0.3.3" # remember to update html_root_url +version = "0.3.4" # remember to update html_root_url authors = ["David Tolnay "] license = "MIT/Apache-2.0" description = "Fast functions for printing integer primitives to an io::Write" diff --git a/src/lib.rs b/src/lib.rs index ff58115..722847f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -6,7 +6,7 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -#![doc(html_root_url = "https://docs.rs/itoa/0.3.3")] +#![doc(html_root_url = "https://docs.rs/itoa/0.3.4")] #![cfg_attr(feature = "i128", feature(i128_type, i128))]