From d439a49588732099a2f89981dd8377445627434b Mon Sep 17 00:00:00 2001 From: Theodore Cipicchio Date: Sun, 29 Apr 2018 18:19:10 -0700 Subject: [PATCH] Update README for 0.2.x --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 83aa481..6c40fcb 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -scratchpad = "0.1" +scratchpad = "0.2" ``` and this to your crate root: @@ -50,7 +50,7 @@ disabled in your `Cargo.toml`: ```toml [dependencies] -scratchpad = { version = "0.1", default-features = false } +scratchpad = { version = "0.2", default-features = false } ``` `Box` support is still available for `no_std` builds when using a nightly @@ -73,5 +73,5 @@ Simply add the `unstable` feature to your `Cargo.toml` dependency: ```toml [dependencies] -scratchpad = { version = "0.1", features = ["unstable"] } +scratchpad = { version = "0.2", features = ["unstable"] } ```