diff --git a/CHANGELOG.md b/CHANGELOG.md index e2c0046730..ff125fbc0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,21 @@ 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/open-telemetry/opentelemetry-dotnet-instrumentation/compare/v0.6.0-beta.1...HEAD) +## [Unreleased](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/compare/v0.6.0-beta.2...HEAD) + +### Added + +### Changed + +### Deprecated + +### Removed + +### Fixed + +### Security + +## [0.6.0-beta.2](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/tag/v0.6.0-beta.2) This beta release is built on top of [OpenTelemetry .NET](https://github.com/open-telemetry/opentelemetry-dotnet): @@ -26,8 +40,6 @@ This beta release is built on top of [OpenTelemetry .NET](https://github.com/ope [framework roll-forward](https://learn.microsoft.com/en-us/dotnet/core/versions/selection#framework-dependent-apps-roll-forward) from `net6.0` to `net7.0`. -### Deprecated - ### Removed - Remove support for plugin method `ConfigureMetricsOptions(OpenTelemetry.Instrumentation.Process.ProcessInstrumentationOptions)`. @@ -38,8 +50,6 @@ This beta release is built on top of [OpenTelemetry .NET](https://github.com/ope - Fix issues when instrumenting `dotnet` CLI [#1477](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/issues/1744). -### Security - ## [0.6.0-beta.1](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/tag/v0.6.0-beta.1) This beta release is built on top of [OpenTelemetry .NET](https://github.com/open-telemetry/opentelemetry-dotnet): diff --git a/OpenTelemetry.DotNet.Auto.psm1 b/OpenTelemetry.DotNet.Auto.psm1 index 2184b54395..5c7d58a012 100644 --- a/OpenTelemetry.DotNet.Auto.psm1 +++ b/OpenTelemetry.DotNet.Auto.psm1 @@ -224,7 +224,7 @@ function Install-OpenTelemetryCore() { [string]$LocalPath ) - $version = "v0.6.0-beta.1" + $version = "v0.6.0-beta.2" $installDir = Get-CLIInstallDir-From-InstallDir $InstallDir $archivePath = $null $deleteArchive = $true diff --git a/docs/README.md b/docs/README.md index 971a34ba72..2a762e2351 100644 --- a/docs/README.md +++ b/docs/README.md @@ -139,7 +139,7 @@ Example usage: ```sh # Download the bash script -curl -sSfL https://raw.githubusercontent.com/open-telemetry/opentelemetry-dotnet-instrumentation/v0.6.0-beta.1/otel-dotnet-auto-install.sh -O +curl -sSfL https://raw.githubusercontent.com/open-telemetry/opentelemetry-dotnet-instrumentation/v0.6.0-beta.2/otel-dotnet-auto-install.sh -O # Install core files sh ./otel-dotnet-auto-install.sh @@ -159,7 +159,7 @@ uses environment variables as parameters: | `OTEL_DOTNET_AUTO_HOME` | Location where binaries are to be installed | No | `$HOME/.otel-dotnet-auto` | | `OS_TYPE` | Possible values: `linux-glibc`, `linux-musl`, `macos`, `windows` | No | *Calculated* | | `TMPDIR` | Temporary directory used when downloading the files | No | `$(mktemp -d)` | -| `VERSION` | Version to download | No | `v0.6.0-beta.1` | +| `VERSION` | Version to download | No | `v0.6.0-beta.2` | [instrument.sh](../instrument.sh) script uses environment variables as parameters: @@ -180,7 +180,7 @@ Example usage (run as administrator): ```powershell # Download the module -$module_url = "https://raw.githubusercontent.com/open-telemetry/opentelemetry-dotnet-instrumentation/v0.6.0-beta.1/OpenTelemetry.DotNet.Auto.psm1" +$module_url = "https://raw.githubusercontent.com/open-telemetry/opentelemetry-dotnet-instrumentation/v0.6.0-beta.2/OpenTelemetry.DotNet.Auto.psm1" $download_path = Join-Path $env:temp "OpenTelemetry.DotNet.Auto.psm1" Invoke-WebRequest -Uri $module_url -OutFile $download_path diff --git a/nuget/OpenTelemetry.AutoInstrumentation.nuspec b/nuget/OpenTelemetry.AutoInstrumentation.nuspec index 4f886358f2..8371ece99c 100644 --- a/nuget/OpenTelemetry.AutoInstrumentation.nuspec +++ b/nuget/OpenTelemetry.AutoInstrumentation.nuspec @@ -2,7 +2,7 @@ OpenTelemetry.AutoInstrumentation - 0.6.0-beta.1 + 0.6.0-beta.2 OpenTelemetry Auto-Instrumentation OpenTelemetry Authors OpenTelemetry Authors diff --git a/otel-dotnet-auto-install.sh b/otel-dotnet-auto-install.sh index 81f856f0b8..dab233c55b 100755 --- a/otel-dotnet-auto-install.sh +++ b/otel-dotnet-auto-install.sh @@ -31,7 +31,7 @@ esac test -z "$OTEL_DOTNET_AUTO_HOME" && OTEL_DOTNET_AUTO_HOME="$HOME/.otel-dotnet-auto" test -z "$TMPDIR" && TMPDIR="$(mktemp -d)" -test -z "$VERSION" && VERSION="v0.6.0-beta.1" +test -z "$VERSION" && VERSION="v0.6.0-beta.2" RELEASES_URL="https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases" ARCHIVE="opentelemetry-dotnet-instrumentation-$OS_TYPE.zip" diff --git a/src/OpenTelemetry.AutoInstrumentation.Native/version.h b/src/OpenTelemetry.AutoInstrumentation.Native/version.h index 1a390b5db1..48bee3ada3 100644 --- a/src/OpenTelemetry.AutoInstrumentation.Native/version.h +++ b/src/OpenTelemetry.AutoInstrumentation.Native/version.h @@ -1,3 +1,3 @@ #pragma once -constexpr auto PROFILER_VERSION = "0.6.0-beta.1"; +constexpr auto PROFILER_VERSION = "0.6.0-beta.2"; diff --git a/src/OpenTelemetry.AutoInstrumentation/Constants.cs b/src/OpenTelemetry.AutoInstrumentation/Constants.cs index f200e3209b..f78caa154e 100644 --- a/src/OpenTelemetry.AutoInstrumentation/Constants.cs +++ b/src/OpenTelemetry.AutoInstrumentation/Constants.cs @@ -20,7 +20,7 @@ internal static class Constants { public static class Tracer { - public const string Version = "0.6.0-beta.1"; + public const string Version = "0.6.0-beta.2"; public const string AutoInstrumentationVersionName = "telemetry.auto.version"; }