Skip to content
Closed
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 libdd-capabilities-impl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "libdd-capabilities-impl"
version = "1.0.0"
version = "1.1.0"
description = "Native implementations of libdd-capabilities traits"
homepage = "https://github.com/DataDog/libdatadog/tree/main/libdd-capabilities-impl"
repository = "https://github.com/DataDog/libdatadog/tree/main/libdd-capabilities-impl"
Expand Down
6 changes: 3 additions & 3 deletions libdd-data-pipeline/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libdd-data-pipeline"
version= "3.0.1"
version= "3.1.0"
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Update the workspace lockfile with the version bump

When this package version is changed without the root Cargo.lock update, locked builds no longer resolve the workspace: I checked cargo check --locked -p libdd-data-pipeline --no-default-features and it exits with the lock file /workspace/libdatadog/Cargo.lock needs to be updated. Any CI/release job or developer build that uses the checked-in lockfile with --locked will fail until the lockfile records libdd-data-pipeline 3.1.0 and libdd-capabilities-impl 1.1.0.

Useful? React with 👍 / 👎.

description = "Trace exporter package allowing sending data from datadog SDKs to the Trace Agent."
homepage = "https://github.com/DataDog/libdatadog/tree/main/libdd-data-pipeline"
repository = "https://github.com/DataDog/libdatadog/tree/main/libdd-data-pipeline"
Expand Down Expand Up @@ -48,7 +48,7 @@ libdd-tinybytes = { version = "1.1.0", path = "../libdd-tinybytes", features = [

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tokio = { version = "1.23", features = ["time", "test-util"], default-features = false }
libdd-capabilities-impl = { version = "1.0.0", path = "../libdd-capabilities-impl", default-features = false }
libdd-capabilities-impl = { version = "1.1.0", path = "../libdd-capabilities-impl", default-features = false }

[target.'cfg(target_arch = "wasm32")'.dependencies]
getrandom = { version = "0.2", features = ["js"] }
Expand All @@ -63,7 +63,7 @@ harness = false
path = "benches/trace_buffer.rs"

[dev-dependencies]
libdd-capabilities-impl = { version = "1.0.0", path = "../libdd-capabilities-impl" }
libdd-capabilities-impl = { version = "1.1.0", path = "../libdd-capabilities-impl" }
libdd-log = { path = "../libdd-log" }
libdd-shared-runtime = { version = "0.1.0", path = "../libdd-shared-runtime" }
regex = "1.5"
Expand Down
Loading