Skip to content

Commit f13b5d6

Browse files
committed
bump everything to version 0.2.0
This release includes the `color` feature. Thanks @azriel91!
1 parent b2440b8 commit f13b5d6

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "console_log"
3-
version = "0.1.2"
3+
version = "0.2.0"
44
authors = ["Matthew Nicholson <matt@matt-land.com>"]
55
edition = "2018"
66
keywords = ["log", "logging", "console", "web_sys", "web", "wasm"]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ The `"color"` feature adds styling to the log messages.
3333

3434
`Cargo.toml`
3535
```toml
36-
console_log = { version = "0.1", features = ["color"] }
36+
console_log = { version = "0.2", features = ["color"] }
3737
```
3838

3939
The styled log messages will be rendered as follows:
@@ -52,7 +52,7 @@ your code for non-release builds.
5252
[dependencies]
5353
cfg_if = "0.1"
5454
log = "0.4"
55-
console_log = { version = "0.1", optional = true }
55+
console_log = { version = "0.2", optional = true }
5656

5757
[features]
5858
default = ["console_log"]

src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![deny(missing_docs)]
2-
#![doc(html_root_url = "https://docs.rs/console_log/0.1.2")]
2+
#![doc(html_root_url = "https://docs.rs/console_log/0.2.0")]
33

44
//! A logger that logs to the browser's console.
55
//!
@@ -41,7 +41,7 @@
4141
//!
4242
//! `Cargo.toml`
4343
//! ```toml
44-
//! console_log = { version = "0.1", features = ["color"] }
44+
//! console_log = { version = "0.2", features = ["color"] }
4545
//! ```
4646
//!
4747
//! The styled log messages will be rendered as follows:
@@ -59,7 +59,7 @@
5959
//! [dependencies]
6060
//! cfg_if = "0.1"
6161
//! log = "0.4"
62-
//! console_log = { version = "0.1", optional = true }
62+
//! console_log = { version = "0.2", optional = true }
6363
//!
6464
//! [features]
6565
//! default = ["console_log"]

0 commit comments

Comments
 (0)