Skip to content

Commit

Permalink
Publish v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SpriteOvO committed Oct 7, 2024
1 parent 9f9516b commit 06aaa90
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Fast, highly configurable Rust logging crate, inspired by the C++ logging librar
Add this to `Cargo.toml`:
```toml
[dependencies]
spdlog-rs = "0.3"
spdlog-rs = "0.4"
```

The documentation of this crate is hosted on [docs.rs], and you can learn examples under [./examples] directory along with it.
Expand Down
2 changes: 1 addition & 1 deletion spdlog-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spdlog-macros"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
rust-version = "1.60"
description = "Macros implementation of crate \"spdlog-rs\""
Expand Down
6 changes: 3 additions & 3 deletions spdlog/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "spdlog-rs"
version = "0.3.13"
version = "0.4.0"
edition = "2021"
rust-version = "1.60"
description = "A fast and combinable Rust logging crate, inspired by the C++ logging library spdlog"
description = "Fast, highly configurable Rust logging crate, inspired by the C++ logging library spdlog"
repository = "https://github.com/SpriteOvO/spdlog-rs"
license = "MIT OR Apache-2.0"
keywords = ["spdlog", "log", "logging"]
Expand Down Expand Up @@ -54,7 +54,7 @@ once_cell = "1.16.0"
serde = { version = "1.0.163", optional = true, features = ["derive"] }
serde_json = { version = "1.0.120", optional = true }
spdlog-internal = { version = "=0.1.0", path = "../spdlog-internal", optional = true }
spdlog-macros = { version = "0.1.0", path = "../spdlog-macros" }
spdlog-macros = { version = "=0.2.0", path = "../spdlog-macros" }
spin = "0.9.8"
thiserror = "1.0.37"

Expand Down
2 changes: 1 addition & 1 deletion spdlog/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
//! Add this to `Cargo.toml`:
//! ```toml
//! [dependencies]
//! spdlog-rs = "0.3"
//! spdlog-rs = "0.4"
//! ```
//!
//! `spdlog-rs` is highly configurable, and also works out-of-the-box for
Expand Down

0 comments on commit 06aaa90

Please sign in to comment.