Bump to 0.3.0
This commit is contained in:
parent
fce19e049d
commit
9fd0e47b7f
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "weblog"
|
||||
version = "0.3.0-beta.1"
|
||||
version = "0.3.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."
|
||||
|
@ -20,6 +20,6 @@ std_web = ["stdweb"]
|
|||
|
||||
[dependencies]
|
||||
stdweb = { version = ">= 0.4", optional = true }
|
||||
weblog-proc-macro = { path = "./weblog-proc-macro", version = "0.3.0-beta.1", optional = true }
|
||||
weblog-proc-macro = { path = "./weblog-proc-macro", version = "0.3.0", optional = true }
|
||||
web-sys = { version = "0.3", features = ["console"], optional = true }
|
||||
wasm-bindgen = { version = "0.2", optional = true }
|
||||
|
|
|
@ -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.3.0-beta.1"
|
||||
weblog = "0.3.0"
|
||||
|
||||
# For stdweb:
|
||||
weblog = { version = "0.3.0-beta.1", default-features = false, features = ["std_web"] }
|
||||
weblog = { version = "0.3.0", default-features = false, features = ["std_web"] }
|
||||
```
|
||||
|
||||
See the documentation for usage examples.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "weblog-example-web-sys"
|
||||
version = "0.3.0-beta.1"
|
||||
version = "0.3.0"
|
||||
authors = ["Rob Watson <rfwatson@users.noreply.github.com>"]
|
||||
edition = "2018"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "weblog-proc-macro"
|
||||
version = "0.3.0-beta.1"
|
||||
version = "0.3.0"
|
||||
authors = ["Rob Watson <rfwatson@users.noreply.github.com>"]
|
||||
repository = "https://github.com/rfwatson/weblog"
|
||||
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."
|
||||
|
|
Loading…
Reference in New Issue