From 944357868c310850ee4f3dce444fcf6c63741117 Mon Sep 17 00:00:00 2001 From: Rob Watson Date: Wed, 16 Sep 2020 10:40:20 +0200 Subject: [PATCH] Bump to v0.2 --- Cargo.toml | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6a28b71..346a78c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "weblog" -version = "0.1.0" +version = "0.2.0" authors = ["Rob Watson "] edition = "2018" description = "weblog is a crate that defines a set of macros for calling `console.log()` and other members of the browser's console API when targeting Wasm." diff --git a/README.md b/README.md index b082b05..2b55d72 100644 --- a/README.md +++ b/README.md @@ -54,10 +54,10 @@ No stringification is performed on the Rust side - so objects will be fully intr ```toml # Defaults to web-sys -weblog = "0.1" +weblog = "0.2" # For stdweb: -weblog = { version = "0.1", default-features = false, features = ["std_web"] } +weblog = { version = "0.2", default-features = false, features = ["std_web"] } ``` See the documentation for usage examples.