Release 1.0.0

This commit is contained in:
David Tolnay 2021-12-12 10:42:05 -08:00
parent ef7c22a081
commit e6a8f6f2f1
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.4.8" # remember to update html_root_url version = "1.0.0" # remember to update html_root_url
authors = ["David Tolnay <dtolnay@gmail.com>"] authors = ["David Tolnay <dtolnay@gmail.com>"]
rust-version = "1.36" rust-version = "1.36"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"

View File

@ -20,7 +20,7 @@ See also [`ryu`] for printing floating point primitives.
```toml ```toml
[dependencies] [dependencies]
itoa = "0.4" itoa = "1.0"
``` ```
<br> <br>

View File

@ -30,7 +30,7 @@
//! //!
//! ![performance](https://raw.githubusercontent.com/dtolnay/itoa/master/performance.png) //! ![performance](https://raw.githubusercontent.com/dtolnay/itoa/master/performance.png)
#![doc(html_root_url = "https://docs.rs/itoa/0.4.8")] #![doc(html_root_url = "https://docs.rs/itoa/1.0.0")]
#![no_std] #![no_std]
#![allow( #![allow(
clippy::cast_lossless, clippy::cast_lossless,