Skip to content

Commit 0e18d10

Browse files
committed
re-release version 0.2.2 as 1.0.0
The code hasn't had major changes in a while and probably won't. Let's call it stable.
1 parent 3f2d71b commit 0e18d10

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
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.2.2"
3+
version = "1.0.0"
44
authors = ["Matthew Nicholson <matt@matt-land.com>"]
55
edition = "2018"
66
keywords = ["log", "logging", "console", "web_sys", "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.2", features = ["color"] }
36+
console_log = { version = "1", 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.2", optional = true }
55+
console_log = { version = "1", optional = true }
5656

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

src/lib.rs

Lines changed: 1 addition & 1 deletion
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.2.2")]
2+
#![doc(html_root_url = "https://docs.rs/console_log/1.0.0")]
33

44
//! A logger that logs to the browser's console.
55
//!

0 commit comments

Comments
 (0)