Skip to content

Commit

Permalink
Release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Aug 7, 2018
1 parent 8ee4570 commit 7571cfc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
[package]
name = "ryu"
version = "0.0.0"
version = "0.2.0"
authors = ["David Tolnay <dtolnay@gmail.com>"]
license = "MIT/Apache-2.0"
description = "Fast floating point to string conversion"
repository = "https://github.com/dtolnay/ryu"
documentation = "https://docs.rs/ryu"
readme = "README.md"
build = "build.rs"
publish = false

[features]
# Use smaller lookup tables. Instead of storing every required power of
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ uses nothing from the Rust standard library so is usable from no_std crates.*

```toml
[dependencies]
# not yet published to crates.io
ryu = { git = "https://github.com/dtolnay/ryu" }
ryu = "0.2"
```

## Examples
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
//! ```
#![no_std]
#![doc(html_root_url = "https://docs.rs/ryu/0.0.0")]
#![doc(html_root_url = "https://docs.rs/ryu/0.2.0")]
#![cfg_attr(feature = "no-panic", feature(use_extern_macros))]
#![cfg_attr(
feature = "cargo-clippy",
Expand Down

0 comments on commit 7571cfc

Please sign in to comment.