diff --git a/Cargo.lock b/Cargo.lock index 5ea49c1..dbac54f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2676,7 +2676,7 @@ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" [[package]] name = "tracevault-cli" -version = "0.1.0" +version = "0.2.0" dependencies = [ "chrono", "clap", @@ -2695,7 +2695,7 @@ dependencies = [ [[package]] name = "tracevault-core" -version = "0.1.0" +version = "0.2.0" dependencies = [ "async-trait", "chrono", @@ -2718,26 +2718,13 @@ dependencies = [ name = "tracevault-enterprise" version = "0.1.0" dependencies = [ - "aes-gcm", "async-trait", - "base64", - "chrono", - "ed25519-dalek", - "glob-match", - "hex", - "rand", - "reqwest", - "serde", - "serde_json", - "sha2", "tracevault-core", - "tracing", - "uuid", ] [[package]] name = "tracevault-server" -version = "0.1.0" +version = "0.2.0" dependencies = [ "aes-gcm", "argon2", diff --git a/Cargo.toml b/Cargo.toml index df7a62f..45d1600 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/tracevault-core", "crates/tracevault-cli", "crates/tracevault resolver = "2" [workspace.package] -version = "0.1.0" +version = "0.2.0" edition = "2021" license = "Apache-2.0" repository = "https://github.com/softwaremill/tracevault" diff --git a/crates/tracevault-cli/CHANGELOG.md b/crates/tracevault-cli/CHANGELOG.md new file mode 100644 index 0000000..5200d9a --- /dev/null +++ b/crates/tracevault-cli/CHANGELOG.md @@ -0,0 +1,15 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.2.0](https://github.com/softwaremill/tracevault/compare/v0.1.0...v0.2.0) - 2026-03-23 + +### Fixed + +- fix tests +- fix cargo clippy diff --git a/crates/tracevault-cli/Cargo.toml b/crates/tracevault-cli/Cargo.toml index 0d0cc75..8f9c08a 100644 --- a/crates/tracevault-cli/Cargo.toml +++ b/crates/tracevault-cli/Cargo.toml @@ -18,7 +18,7 @@ name = "tracevault" path = "src/main.rs" [dependencies] -tracevault-core = { path = "../tracevault-core", version = "0.1" } +tracevault-core = { path = "../tracevault-core", version = "0.2" } clap = { version = "4", features = ["derive"] } chrono.workspace = true tokio.workspace = true diff --git a/crates/tracevault-core/CHANGELOG.md b/crates/tracevault-core/CHANGELOG.md new file mode 100644 index 0000000..c601604 --- /dev/null +++ b/crates/tracevault-core/CHANGELOG.md @@ -0,0 +1,14 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.2.0](https://github.com/softwaremill/tracevault/compare/v0.1.0...v0.2.0) - 2026-03-23 + +### Fixed + +- fix cargo clippy diff --git a/crates/tracevault-server/CHANGELOG.md b/crates/tracevault-server/CHANGELOG.md new file mode 100644 index 0000000..16945e4 --- /dev/null +++ b/crates/tracevault-server/CHANGELOG.md @@ -0,0 +1,15 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.2.0](https://github.com/softwaremill/tracevault/compare/v0.1.0...v0.2.0) - 2026-03-23 + +### Fixed + +- fix warnings +- fix cargo clippy diff --git a/crates/tracevault-server/Cargo.toml b/crates/tracevault-server/Cargo.toml index 9a94f0a..58c7ccf 100644 --- a/crates/tracevault-server/Cargo.toml +++ b/crates/tracevault-server/Cargo.toml @@ -10,7 +10,7 @@ keywords = ["tracing", "attribution", "ai", "server"] categories = ["web-programming", "development-tools"] [dependencies] -tracevault-core = { path = "../tracevault-core", version = "0.1" } +tracevault-core = { path = "../tracevault-core", version = "0.2" } axum = { version = "0.8", features = ["macros"] } tokio.workspace = true serde.workspace = true