Release 0.3.4

This commit is contained in:
David Tolnay 2017-09-16 14:30:35 -07:00
parent a3dadb1557
commit 13d1f096ea
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] [package]
name = "itoa" 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 <dtolnay@gmail.com>"] authors = ["David Tolnay <dtolnay@gmail.com>"]
license = "MIT/Apache-2.0" license = "MIT/Apache-2.0"
description = "Fast functions for printing integer primitives to an io::Write" 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 // option. This file may not be copied, modified, or distributed
// except according to those terms. // 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))] #![cfg_attr(feature = "i128", feature(i128_type, i128))]