Skip to content

Commit 3ac6db6

Browse files
committed
Publish v0.3.0
1 parent 46851cc commit 3ac6db6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ A fast and combinable Rust logging crate, inspired by the C++ logging library [s
2929
Add this to `Cargo.toml`:
3030
```toml
3131
[dependencies]
32-
spdlog-rs = "0.2"
32+
spdlog-rs = "0.3"
3333
```
3434

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

spdlog/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-rs"
3-
version = "0.2.4"
3+
version = "0.3.0"
44
edition = "2021"
55
rust-version = "1.56"
66
description = "A fast and combinable Rust logging crate, inspired by the C++ logging library spdlog"
@@ -48,7 +48,7 @@ flexible-string = { version = "0.1.0", optional = true }
4848
if_chain = "1.0.2"
4949
log = { version = "0.4", optional = true }
5050
once_cell = "1.16.0"
51-
spdlog-macros = { path = "../spdlog-macros" }
51+
spdlog-macros = { version = "0.1.0", path = "../spdlog-macros" }
5252
spin = "0.9.4"
5353
static_assertions = "1.1.0"
5454
thiserror = "1.0.37"

spdlog/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
//! Add this to `Cargo.toml`:
1111
//! ```toml
1212
//! [dependencies]
13-
//! spdlog-rs = "0.2"
13+
//! spdlog-rs = "0.3"
1414
//! ```
1515
//!
1616
//! `spdlog-rs` is out-of-the-box, it has a default logger, so users can output

0 commit comments

Comments
 (0)