From 6cc757cb3d39f72e1df4917872517b7d699b9da4 Mon Sep 17 00:00:00 2001 From: Mike Goldsmith Date: Wed, 22 Nov 2023 19:58:42 +0000 Subject: [PATCH] rel: Prepare v0.0.25-alpha release (#318) ## Which problem is this PR solving? Prepares the next alpha release of the network agent. ## Short description of the changes - Update version to v0.0.25-alpha - Add changelog entry ## How to verify that this has the expected result Allows a new version of the agent to be tagged and released. --- CHANGELOG.md | 12 ++++++++++++ main.go | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a00dd14..ca4d65e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Honeycomb Network Agent changelog +## [0.0.25-alpha] - 2023-11-22 + +### Fixes + +- Use ValidatedSetSelector to reduce memory usage in k8s client (#317) | @loshz +- Improved locking of assembler state (#307) | @loshz + +### Maintenance + +- Bump otel-config-go to v1.13.0 (#319) | @MikeGoldsmith +- maint(deps): bump the k8s-dependencies group with 2 updates (#315) | @Dependabot + ## [0.0.24-alpha] - 2023-10-30 ### Enhancements diff --git a/main.go b/main.go index 97ee040..7e4186d 100644 --- a/main.go +++ b/main.go @@ -18,7 +18,7 @@ import ( "k8s.io/client-go/rest" ) -const Version string = "0.0.24-alpha" +const Version string = "0.0.25-alpha" func main() { config := config.NewConfig()