From 4c84b27cb6c7126291caca6ab2b3d72d70fc5dc2 Mon Sep 17 00:00:00 2001 From: jason plumb <75337021+breedx-splk@users.noreply.github.com> Date: Thu, 15 Feb 2024 08:54:43 -0800 Subject: [PATCH] Prepare 1.30.2 release (#1657) * prepare 1.30.2 release * fix changelog * fix changelog * remove unnecessary --- CHANGELOG.md | 6 ++++++ README.md | 2 +- deployments/cloudfoundry/buildpack/README.md | 2 +- version.gradle.kts | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1abd4d38f..c549bfa4d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,12 @@ and this repository adheres to [Semantic Versioning](https://semver.org/spec/v2. ## Unreleased +tbd + +## v1.30.2 - 2024-02-15 + +- Update base image for tanzu buildpack from cflinuxfs3 to cflinuxfs4. + ## v1.30.1 - 2024-02-02 ### General diff --git a/README.md b/README.md index 10fdab29c..4349814a4 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,7 @@ To extend the instrumentation with the OpenTelemetry Instrumentation for Java, you have to use a compatible API version. -The Splunk Distribution of OpenTelemetry Java version 1.30.1 is compatible +The Splunk Distribution of OpenTelemetry Java version 1.30.2 is compatible with: * OpenTelemetry API version 1.34.1 diff --git a/deployments/cloudfoundry/buildpack/README.md b/deployments/cloudfoundry/buildpack/README.md index 28628e3c2..376d841ba 100644 --- a/deployments/cloudfoundry/buildpack/README.md +++ b/deployments/cloudfoundry/buildpack/README.md @@ -40,7 +40,7 @@ If you want to use a specific version of the Java agent in your application, you environment variable before application deployment, either using `cf set-env` or the `manifest.yml` file: ```sh -$ cf set-env SPLUNK_OTEL_JAVA_VERSION 1.30.1 +$ cf set-env SPLUNK_OTEL_JAVA_VERSION 1.30.2 ``` By default, the [latest](https://github.com/signalfx/splunk-otel-java/releases/latest) available agent version is used. diff --git a/version.gradle.kts b/version.gradle.kts index 8a2284c07..d6d61186e 100644 --- a/version.gradle.kts +++ b/version.gradle.kts @@ -1,5 +1,5 @@ // do NOT update that variable manually - it is managed by the pre/post release scripts -val distroVersion = "1.30.1" +val distroVersion = "1.30.2" allprojects { version = distroVersion