diff --git a/CHANGELOG.md b/CHANGELOG.md index 236d3f8..4c21350 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.toml b/Cargo.toml index e55245a..9a16337 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-log" -version = "0.2.13" +version = "0.2.14" authors = ["Daniel Mueller "] edition = "2021" rust-version = "1.61" @@ -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] @@ -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} diff --git a/macros/Cargo.toml b/macros/Cargo.toml index bf4f81c..b5d2a85 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,10 +1,14 @@ [package] name = "test-log-macros" -version = "0.2.13" +version = "0.2.14" authors = ["Daniel Mueller "] 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