From 678a4b45247bb4b822a2adecb5e5e05180835424 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Tue, 22 Aug 2017 19:50:39 -0700 Subject: [PATCH] Release 0.3.2 --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 58b0515..a1113ef 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "itoa" -version = "0.3.1" # remember to update html_root_url +version = "0.3.2" # 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 b94ae63..0e240c1 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.1")] +#![doc(html_root_url = "https://docs.rs/itoa/0.3.2")] use std::{io, mem, ptr, slice};