Release 0.3.2

This commit is contained in:
David Tolnay 2017-08-22 19:50:39 -07:00
parent 0ac0d9c4aa
commit 678a4b4524
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
2 changed files with 2 additions and 2 deletions

View File

@ -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 <dtolnay@gmail.com>"]
license = "MIT/Apache-2.0"
description = "Fast functions for printing integer primitives to an io::Write"

View File

@ -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};