diff --git a/CHANGELOG.md b/CHANGELOG.md index ed1b4e76..665c9a28 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,18 +5,12 @@ All notable changes to this component are documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). This component adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased](https://github.com/signalfx/splunk-otel-dotnet/compare/v0.2.0-beta.1...HEAD) - -The is a release candidate, -built on top of [OpenTelemetry .NET Auto Instrumentation v1.0.0-rc.1](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/tag/v1.0.0-rc.1). +## [Unreleased](https://github.com/signalfx/splunk-otel-dotnet/compare/v1.0.0-rc.1...HEAD) ### Added ### Changed -- Updated [OpenTelemetry .NET Auto Instrumentation](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation): - [`1.0.0-rc.1`](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/tag/v1.0.0-rc.1). - ### Deprecated ### Removed @@ -25,9 +19,19 @@ built on top of [OpenTelemetry .NET Auto Instrumentation v1.0.0-rc.1](https://gi ### Security -## [0.2.0-beta.1](https://github.com/signalfx/splunk-otel-dotnet/releases/tag/v0.1.0-beta.1) +## [1.0.0-rc.1](https://github.com/signalfx/splunk-otel-dotnet/releases/tag/v1.0.0-rc.1) + +This is a release candidate, +built on top of [OpenTelemetry .NET Auto Instrumentation v1.0.0-rc.1](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/tag/v1.0.0-rc.1). + +### Changed + +- Updated [OpenTelemetry .NET Auto Instrumentation](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation): + [`1.0.0-rc.1`](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/tag/v1.0.0-rc.1). + +## [0.2.0-beta.1](https://github.com/signalfx/splunk-otel-dotnet/releases/tag/v0.2.0-beta.1) -The is a beta release, +This is a beta release, built on top of [OpenTelemetry .NET Auto Instrumentation v0.7.0](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/tag/v0.7.0). ### Changed @@ -37,7 +41,7 @@ built on top of [OpenTelemetry .NET Auto Instrumentation v0.7.0](https://github. ## [0.1.0-beta.1](https://github.com/signalfx/splunk-otel-dotnet/releases/tag/v0.1.0-beta.1) -The is a beta release, +This is a beta release, built on top of [OpenTelemetry .NET Auto Instrumentation v0.6.0](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/tag/v0.6.0). ### Added @@ -55,10 +59,10 @@ built on top of [OpenTelemetry .NET Auto Instrumentation v0.6.0](https://github. ## [0.0.1-alpha.2](https://github.com/signalfx/splunk-otel-dotnet/releases/tag/v0.0.1-alpha.2) -The is an alpha release, +This is an alpha release, built on top of [OpenTelemetry .NET Auto Instrumentation v0.4.0-beta.1](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/tag/v0.4.0-beta.1). ## [0.0.1-alpha.1](https://github.com/signalfx/splunk-otel-dotnet/releases/tag/v0.0.1-alpha.1) -The is the first alpha release, +This is the first alpha release, built on top of [OpenTelemetry .NET Auto Instrumentation v0.3.1-beta.1](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/tag/v0.3.1-beta.1). diff --git a/RELEASING.md b/RELEASING.md index e8d96c11..d365e442 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -5,7 +5,7 @@ No changes in the code are needed to correctly version this package. 1. Update the version in the following files: - [`splunk-otel-dotnet-install.sh`](splunk-otel-dotnet-install.sh#L34) - - [`Splunk.OTel.DotNet.psm1`](Splunk.OTel.DotNet.psm1#L246) + - [`Splunk.OTel.DotNet.psm1`](Splunk.OTel.DotNet.psm1#L244) 1. Update the [CHANGELOG.md](CHANGELOG.md) with the new release. diff --git a/Splunk.OTel.DotNet.psm1 b/Splunk.OTel.DotNet.psm1 index 6f39a246..df31f5f7 100644 --- a/Splunk.OTel.DotNet.psm1 +++ b/Splunk.OTel.DotNet.psm1 @@ -241,7 +241,7 @@ function Install-OpenTelemetryCore() { [string]$LocalPath ) - $version = "v0.2.0-beta.1" + $version = "v1.0.0-rc.1" $installDir = Get-CLIInstallDir-From-InstallDir $InstallDir $archivePath = $null $deleteArchive = $true diff --git a/splunk-otel-dotnet-install.sh b/splunk-otel-dotnet-install.sh index 6e46b92e..8fe719bb 100755 --- a/splunk-otel-dotnet-install.sh +++ b/splunk-otel-dotnet-install.sh @@ -31,7 +31,7 @@ esac test -z "$OTEL_DOTNET_AUTO_HOME" && OTEL_DOTNET_AUTO_HOME="$HOME/.splunk-otel-dotnet" test -z "$TMPDIR" && TMPDIR="$(mktemp -d)" -test -z "$VERSION" && VERSION="v0.2.0-beta.1" +test -z "$VERSION" && VERSION="v1.0.0-rc.1" RELEASES_URL="https://github.com/signalfx/splunk-otel-dotnet/releases" ARCHIVE="splunk-opentelemetry-dotnet-$OS_TYPE.zip"