Release 0.4.0

This commit is contained in:
David Tolnay 2018-03-18 00:25:42 -07:00
parent c7c3caf3b9
commit ab5b81e08d
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
[package] [package]
name = "itoa" name = "itoa"
version = "0.3.4" # remember to update html_root_url version = "0.4.0" # 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

@ -63,7 +63,7 @@ following in `Cargo.toml`:
```toml ```toml
[dependencies] [dependencies]
itoa = "0.3" itoa = "0.4"
``` ```
## License ## License

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.4")] #![doc(html_root_url = "https://docs.rs/itoa/0.4.0")]
#![cfg_attr(not(feature = "std"), no_std)] #![cfg_attr(not(feature = "std"), no_std)]