Skip to content

Commit 06aaa90

Browse files
committed
Publish v0.4.0
1 parent 9f9516b commit 06aaa90

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Fast, highly configurable Rust logging crate, inspired by the C++ logging librar
3030
Add this to `Cargo.toml`:
3131
```toml
3232
[dependencies]
33-
spdlog-rs = "0.3"
33+
spdlog-rs = "0.4"
3434
```
3535

3636
The documentation of this crate is hosted on [docs.rs], and you can learn examples under [./examples] directory along with it.

spdlog-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spdlog-macros"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
rust-version = "1.60"
66
description = "Macros implementation of crate \"spdlog-rs\""

spdlog/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
22
name = "spdlog-rs"
3-
version = "0.3.13"
3+
version = "0.4.0"
44
edition = "2021"
55
rust-version = "1.60"
6-
description = "A fast and combinable Rust logging crate, inspired by the C++ logging library spdlog"
6+
description = "Fast, highly configurable Rust logging crate, inspired by the C++ logging library spdlog"
77
repository = "https://github.com/SpriteOvO/spdlog-rs"
88
license = "MIT OR Apache-2.0"
99
keywords = ["spdlog", "log", "logging"]
@@ -54,7 +54,7 @@ once_cell = "1.16.0"
5454
serde = { version = "1.0.163", optional = true, features = ["derive"] }
5555
serde_json = { version = "1.0.120", optional = true }
5656
spdlog-internal = { version = "=0.1.0", path = "../spdlog-internal", optional = true }
57-
spdlog-macros = { version = "0.1.0", path = "../spdlog-macros" }
57+
spdlog-macros = { version = "=0.2.0", path = "../spdlog-macros" }
5858
spin = "0.9.8"
5959
thiserror = "1.0.37"
6060

spdlog/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
//! Add this to `Cargo.toml`:
2727
//! ```toml
2828
//! [dependencies]
29-
//! spdlog-rs = "0.3"
29+
//! spdlog-rs = "0.4"
3030
//! ```
3131
//!
3232
//! `spdlog-rs` is highly configurable, and also works out-of-the-box for

0 commit comments

Comments
 (0)