From 8b4890115f989a97884adebfc91c0564932d5ed0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20M=C3=BCller?= Date: Mon, 26 Feb 2024 21:07:32 -0800 Subject: [PATCH] Bump version to 0.2.14 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 --- CHANGELOG.md | 4 ++-- Cargo.toml | 5 +++-- macros/Cargo.toml | 6 +++++- 3 files changed, 10 insertions(+), 5 deletions(-) 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