Skip to content

Commit

Permalink
Release 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Mar 18, 2018
1 parent c7c3caf commit ab5b81e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
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>"]
license = "MIT/Apache-2.0"
description = "Fast functions for printing integer primitives to an io::Write"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ following in `Cargo.toml`:

```toml
[dependencies]
itoa = "0.3"
itoa = "0.4"
```

## License
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.4")]
#![doc(html_root_url = "https://docs.rs/itoa/0.4.0")]

#![cfg_attr(not(feature = "std"), no_std)]

Expand Down

0 comments on commit ab5b81e

Please sign in to comment.