@@ -16,9 +16,9 @@ to .NET applications without having to modify their source code.
1616> [ !WARNING]
1717> The following documentation refers to the in-development version
1818 of OpenTelemetry .NET Automatic Instrumentation. Docs for the latest version
19- ([ 1.11 .0] ( https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/latest ) )
19+ ([ 1.12 .0] ( https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/latest ) )
2020can be found in [ opentelemetry.io] ( https://opentelemetry.io/docs/zero-code/net/ )
21- or [ here] ( https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/blob/v1.11 .0/docs/README.md ) .
21+ or [ here] ( https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/blob/v1.12 .0/docs/README.md ) .
2222
2323---
2424
@@ -185,7 +185,7 @@ Example usage:
185185
186186``` sh
187187# Download the bash script
188- curl -sSfL https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/download/v1.11 .0/otel-dotnet-auto-install.sh -O
188+ curl -sSfL https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/download/v1.12 .0/otel-dotnet-auto-install.sh -O
189189
190190# Install core files
191191sh ./otel-dotnet-auto-install.sh
@@ -225,7 +225,7 @@ uses environment variables as parameters:
225225| ` TMPDIR ` | (deprecated) prefer ` DOWNLOAD_DIR ` | No | ` $(mktemp -d) ` |
226226| ` DOWNLOAD_DIR ` | Folder to download the archive to. Will use local archive if it already exists | No | ` $TMPDIR ` or ` $(mktemp -d) ` |
227227| ` LOCAL_PATH ` | Full path the archive to use for installation. (ideal for air-gapped scenarios) | No | * Calculated* |
228- | ` VERSION ` | Version to download | No | ` 1.11 .0 ` |
228+ | ` VERSION ` | Version to download | No | ` 1.12 .0 ` |
229229
230230[ instrument.sh] ( ../instrument.sh ) script
231231uses environment variables as parameters:
@@ -253,7 +253,7 @@ Example usage (run as administrator):
253253#Requires -PSEdition Desktop
254254
255255# Download the module
256- $module_url = "https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/download/v1.11 .0/OpenTelemetry.DotNet.Auto.psm1"
256+ $module_url = "https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/download/v1.12 .0/OpenTelemetry.DotNet.Auto.psm1"
257257$download_path = Join-Path $env:temp "OpenTelemetry.DotNet.Auto.psm1"
258258Invoke-WebRequest -Uri $module_url -OutFile $download_path -UseBasicParsing
259259
0 commit comments