Skip to content

Commit 309fc7c

Browse files
committed
Publish v0.5.0
1 parent 40b8194 commit 309fc7c

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

README.md

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

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

spdlog-internal/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-internal"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
rust-version = "1.66.1"
66
description = "Internal private common code for crate \"spdlog-rs\""

spdlog-macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spdlog-macros"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
edition = "2021"
55
rust-version = "1.66.1"
66
description = "Macros implementation of crate \"spdlog-rs\""
@@ -16,5 +16,5 @@ proc-macro = true
1616
[dependencies]
1717
proc-macro2 = "1.0.47"
1818
quote = "1.0.21"
19-
spdlog-internal = { version = "=0.1.0", path = "../spdlog-internal" }
19+
spdlog-internal = { version = "=0.2.0", path = "../spdlog-internal" }
2020
syn = { version = "2.0.38", features = ["full"] }

spdlog/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spdlog-rs"
3-
version = "0.4.3"
3+
version = "0.5.0"
44
edition = "2021"
55
rust-version = "1.66.1"
66
description = "Fast, highly configurable Rust logging crate, inspired by the C++ logging library spdlog"
@@ -56,8 +56,8 @@ once_cell = "1.16.0"
5656
parking_lot = "0.12.0"
5757
serde = { version = "1.0.163", optional = true, features = ["derive"] }
5858
serde_json = { version = "1.0.120", optional = true }
59-
spdlog-internal = { version = "=0.1.0", path = "../spdlog-internal", optional = true }
60-
spdlog-macros = { version = "=0.2.0", path = "../spdlog-macros" }
59+
spdlog-internal = { version = "=0.2.0", path = "../spdlog-internal", optional = true }
60+
spdlog-macros = { version = "=0.3.0", path = "../spdlog-macros" }
6161
thiserror = "2.0.0"
6262
value-bag = { version = "1.11.1", features = ["owned", "inline-i128"] }
6363

spdlog/src/lib.rs

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

0 commit comments

Comments
 (0)