Skip to content

Commit

Permalink
Release v0.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
dbrgn committed Feb 1, 2023
1 parent 877529b commit 0ed1c1c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).


## 0.2.4 - 2023-02-01

- [bug] `logs_assert` should not get logs from other tests (#19)
- [bug] Fully qualify usage of `Result` in `logs_assert` (#17)
- [docs] Add note that integration tests need no-env-filter (#20)


## 0.2.3 - 2022-07-20

- [feature] Add no-env-filter feature to disable log filtering (#16)
Expand Down
2 changes: 1 addition & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Set variables:

$ export VERSION=X.Y.Z
$ export GPG_KEY=EA456E8BAF0109429583EED83578F667F2F3A5FA
$ export GPG_KEY=20EE002D778AE197EF7D0D2CB993FF98A90C9AB1

Update version numbers (Including the dependency of `tracing-test` on
`tracing-test-macro`!):
Expand Down
2 changes: 1 addition & 1 deletion tracing-test-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tracing-test-macro"
version = "0.2.3"
version = "0.2.4"
authors = ["Danilo Bargen <[email protected]>"]
license = "MIT"
edition = "2018"
Expand Down
4 changes: 2 additions & 2 deletions tracing-test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tracing-test"
version = "0.2.3"
version = "0.2.4"
authors = ["Danilo Bargen <[email protected]>"]
license = "MIT"
edition = "2018"
Expand All @@ -15,7 +15,7 @@ categories = ["development-tools::testing"]
lazy_static = "1.4"
tracing-core = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-test-macro = { path = "../tracing-test-macro", version = "0.2.1" }
tracing-test-macro = { path = "../tracing-test-macro", version = "0.2.4" }

[dev-dependencies]
tokio = { version = "1", features = ["rt-multi-thread", "macros"] } # Used for doctests
Expand Down

0 comments on commit 0ed1c1c

Please sign in to comment.