Skip to content

Commit 6279543

Browse files
authored
chore(agent-data-plane): bump version to 1.0.0 (#1659)
## Summary Bumps the `agent-data-plane` crate version from `0.1.37` to `1.0.0` in preparation for the ADP 1.0.0 release. This is required before tagging, since the Git tag must match the crate version per the release process. ## Test plan - [x] CI passes - [x] Verify `bin/agent-data-plane/Cargo.toml` shows `version = "1.0.0"` 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: jesse.szwedko <jesse.szwedko@datadoghq.com>
1 parent d2ce25c commit 6279543

3 files changed

Lines changed: 4 additions & 5 deletions

File tree

.github/workflows/bump-adp-version.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,8 @@ jobs:
3838
3939
MAJOR=$(echo $CURRENT_VERSION | cut -d '.' -f 1)
4040
MINOR=$(echo $CURRENT_VERSION | cut -d '.' -f 2)
41-
PATCH=$(echo $CURRENT_VERSION | cut -d '.' -f 3)
42-
NEW_PATCH=$((PATCH + 1))
43-
NEW_VERSION="${MAJOR}.${MINOR}.${NEW_PATCH}"
41+
NEW_MINOR=$((MINOR + 1))
42+
NEW_VERSION="${MAJOR}.${NEW_MINOR}.0"
4443
4544
echo "New version: $NEW_VERSION"
4645
echo "current_version=$CURRENT_VERSION" >> $GITHUB_OUTPUT

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/agent-data-plane/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agent-data-plane"
3-
version = "0.1.37"
3+
version = "1.0.0"
44
edition = { workspace = true }
55
license = { workspace = true }
66
repository = { workspace = true }

0 commit comments

Comments
 (0)