Skip to content

Commit

Permalink
Bump version to 0.2.14
Browse files Browse the repository at this point in the history
This change bumps the version of the crate to 0.2.14. The following
notable changes have been made since 0.2.13:
- Factored out test-log-macros crate to relieve users from having to
  care about tracing/logging dependencies themselves
- Introduced default_log_filter attribute for setting the default log
  filter on a per-test basis behind new unstable feature
- Improved compile error output on wrong usage
- Bumped minimum supported Rust version to 1.61
- Bumped env_logger dependency to 0.10
  • Loading branch information
d-e-s-o committed Feb 27, 2024
1 parent b4bd011 commit 8b48901
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Unreleased
----------
0.2.14
------
- Factored out `test-log-macros` crate to relieve users from having to
care about tracing/logging dependencies themselves
- Introduced `default_log_filter` attribute for setting the default log
Expand Down
5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test-log"
version = "0.2.13"
version = "0.2.14"
authors = ["Daniel Mueller <[email protected]>"]
edition = "2021"
rust-version = "1.61"
Expand Down Expand Up @@ -29,6 +29,7 @@ include = ["src/lib.rs", "LICENSE-*", "README.md", "CHANGELOG.md"]

[[test]]
name = "default_log_filter"
path = "tests/default_log_filter.rs"
required-features = ["log", "unstable"]

[features]
Expand All @@ -44,7 +45,7 @@ unstable = ["test-log-macros/unstable"]
members = ["macros"]

[dependencies]
test-log-macros = {path = "macros"}
test-log-macros = {version = "0.2.14", path = "macros"}
tracing-subscriber = {version = "0.3.17", default-features = false, optional = true, features = ["env-filter", "fmt"]}
env_logger = {version = "0.10", default-features = false, optional = true}

Expand Down
6 changes: 5 additions & 1 deletion macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
[package]
name = "test-log-macros"
version = "0.2.13"
version = "0.2.14"
authors = ["Daniel Mueller <[email protected]>"]
edition = "2021"
rust-version = "1.61"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/d-e-s-o/test-log.git"
description = """
Supporting procedural macro crate for test-log.
"""

[lib]
proc-macro = true
Expand Down

0 comments on commit 8b48901

Please sign in to comment.