Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.11](https://github.com/dial9-rs/dial9/compare/dial9-tokio-telemetry-v0.3.10...dial9-tokio-telemetry-v0.3.11) - 2026-05-19

### Added

- add AllocEvent and FreeEvent to trace format ([#420](https://github.com/dial9-rs/dial9/pull/420))

### Fixed

- enforce RotatingWriter retention across restarts ([#414](https://github.com/dial9-rs/dial9/pull/414))

### Other

- extract sampling primitives into shared module ([#418](https://github.com/dial9-rs/dial9/pull/418))
- Extract Source trait for flush-thread data sources ([#408](https://github.com/dial9-rs/dial9/pull/408))
- *(design)* in-memory pipeline ([#389](https://github.com/dial9-rs/dial9/pull/389))

## [0.3.10](https://github.com/dial9-rs/dial9/compare/dial9-tokio-telemetry-v0.3.9...dial9-tokio-telemetry-v0.3.10) - 2026-05-15

### Added
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dial9-tokio-telemetry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dial9-tokio-telemetry"
version = "0.3.10"
version = "0.3.11"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion dial9-viewer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dial9-viewer"
version = "0.3.10"
version = "0.3.11"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions dial9/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dial9"
version = "0.3.10"
version = "0.3.11"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand All @@ -17,5 +17,5 @@ path = "src/main.rs"

[dependencies]
anyhow = "1"
dial9-viewer = { version = "0.3.10", path = "../dial9-viewer" }
dial9-viewer = { version = "0.3.11", path = "../dial9-viewer" }
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }