Skip to content

Commit

Permalink
re-release version 0.2.2 as 1.0.0
Browse files Browse the repository at this point in the history
The code hasn't had major changes in a while and probably won't. Let's
call it stable.
  • Loading branch information
iamcodemaker committed Mar 10, 2023
1 parent 3f2d71b commit 0e18d10
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "console_log"
version = "0.2.2"
version = "1.0.0"
authors = ["Matthew Nicholson <matt@matt-land.com>"]
edition = "2018"
keywords = ["log", "logging", "console", "web_sys", "wasm"]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ The `"color"` feature adds styling to the log messages.

`Cargo.toml`
```toml
console_log = { version = "0.2", features = ["color"] }
console_log = { version = "1", features = ["color"] }
```

The styled log messages will be rendered as follows:
Expand All @@ -52,7 +52,7 @@ your code for non-release builds.
[dependencies]
cfg-if = "0.1"
log = "0.4"
console_log = { version = "0.2", optional = true }
console_log = { version = "1", optional = true }

[features]
default = ["console_log"]
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![deny(missing_docs)]
#![doc(html_root_url = "https://docs.rs/console_log/0.2.2")]
#![doc(html_root_url = "https://docs.rs/console_log/1.0.0")]

//! A logger that logs to the browser's console.
//!
Expand Down

0 comments on commit 0e18d10

Please sign in to comment.