Skip to content

Commit

Permalink
0.4.1
Browse files Browse the repository at this point in the history
Gloo console -> 0.2.1
  • Loading branch information
ranile committed Nov 25, 2021
1 parent 2f45901 commit d56d2ad
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ edition = "2018"
license = "MIT/Apache-2.0"
name = "gloo"
readme = "README.md"
version = "0.4.0"
version = "0.4.1"
repository = "https://github.com/rustwasm/gloo"
homepage = "https://gloo-rs.web.app/"
documentation = "https://docs.rs/gloo/"
categories = ["api-bindings", "wasm"]

[dependencies]
Expand All @@ -17,7 +18,7 @@ gloo-file = { version = "0.2.0", path = "crates/file" }
gloo-dialogs = { version = "0.1.0", path = "crates/dialogs" }
gloo-storage = { version = "0.2.0", path = "crates/storage" }
gloo-render = { version = "0.1.0", path = "crates/render" }
gloo-console = { version = "0.2.0", path = "crates/console" }
gloo-console = { version = "0.2.1", path = "crates/console" }
gloo-utils = { version = "0.1.0", path = "crates/utils" }

[features]
Expand Down
3 changes: 2 additions & 1 deletion crates/console/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
[package]
name = "gloo-console"
description = "Convenience crate for working with browser's console"
version = "0.2.0"
version = "0.2.1"
authors = ["Rust and WebAssembly Working Group"]
edition = "2018"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/rustwasm/gloo/tree/master/crates/console"
homepage = "https://github.com/rustwasm/gloo"
documentation = "https://docs.rs/gloo-console/"
categories = ["api-bindings", "development-tools::profiling", "wasm"]

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions crates/console/src/console_dbg.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/// A macro similar to [`dbg!`].
/// A macro similar to [`dbg!`] that logs [`JsValue`][wasm_bindgen::JsValue]s to console.
///
/// See the [stdlib documentation][std::dbg] to learn more. This macro calls `console.log`
/// instead of `eprintln!` for `JsValue`s. The formatting is done by the browser. If you want
Expand All @@ -23,7 +23,7 @@ macro_rules! console {
};
}

/// A macro similar to [`dbg!`].
/// A macro similar to [`dbg!`] to log to browser console.
///
/// See the [stdlib documentation][std::dbg] to learn more. This macro calls `console.log`
/// instead of `eprintln!`. This macro passing the values to [`console`] after formatting them using
Expand Down

0 comments on commit d56d2ad

Please sign in to comment.