Bump to v0.2

This commit is contained in:
Rob Watson 2020-09-16 10:40:20 +02:00
parent 0aca32c1e7
commit 944357868c
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "weblog"
version = "0.1.0"
version = "0.2.0"
authors = ["Rob Watson <rfwatson@users.noreply.github.com>"]
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."

View File

@ -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.