Skip to content
Merged
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
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ members = ["crates/aerro", "crates/aerro-macros"]
# (Reserved for workspace-wide clippy overrides; currently none.)

[workspace.package]
version = "0.7.0"
version = "0.8.0"
edition = "2024"
rust-version = "1.85"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ cargo run --example basic --features macro
| Flag | Default | Description |
|------|---------|-------------|
| `macro` | ✓ | `#[derive(Aerro)]` proc-macro |
| `tracing` | | Capture OTel trace/span IDs from the active `tracing` span |
| `tracing` | | Capture OTel trace/span IDs from the active `tracing` span |

## Status

Expand Down
4 changes: 2 additions & 2 deletions crates/aerro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ homepage.workspace = true
documentation.workspace = true

[features]
default = ["macro", "tracing"]
default = ["macro"]
macro = ["dep:aerro-macros"]
tracing = ["dep:tracing", "dep:tracing-opentelemetry", "dep:opentelemetry"]

[dependencies]
aerro-macros = { path = "../aerro-macros", version = "0.7.0", optional = true }
aerro-macros = { path = "../aerro-macros", version = "0.8.0", optional = true }
tonic = { workspace = true }
prost = { workspace = true }
bytes = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/aerro/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
//! | Flag | Default | Description |
//! |------|---------|-------------|
//! | `macro` | ✓ | [`Aerro`] derive macro |
//! | `tracing` | | Capture OTel trace/span IDs via the `tracing` subscriber |
//! | `tracing` | | Capture OTel trace/span IDs via the `tracing` subscriber |
//! # Key Types
//!
//! - [`Aerro`] — the trait every error type implements (derive or manual)
Expand Down
Loading