Skip to content

Commit 6fbf15a

Browse files
authored
Release v1.12.0 (#4291)
1 parent 377ac31 commit 6fbf15a

File tree

2 files changed

+20
-12
lines changed

2 files changed

+20
-12
lines changed

CHANGELOG.md

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,21 @@ All notable changes to this component are documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66
This component adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/compare/v1.11.0..HEAD)
8+
## [Unreleased](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/compare/v1.12.0..HEAD)
9+
10+
### Added
11+
12+
### Changed
13+
14+
#### Dependency updates
15+
16+
### Deprecated
17+
18+
### Removed
19+
20+
### Fixed
21+
22+
## [1.12.0](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/tag/v1.12.0)
923

1024
### Added
1125

@@ -71,12 +85,6 @@ This component adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.h
7185
- `System.Text.Json` update from `9.0.2` to `9.0.6`.
7286
- `System.ValueTuple` from `4.5.0` to `4.6.1`.
7387

74-
### Deprecated
75-
76-
### Removed
77-
78-
### Fixed
79-
8088
## [1.11.0](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/tag/v1.11.0)
8189

8290
### Changed

docs/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -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))
2020
can 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
191191
sh ./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
231231
uses 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"
258258
Invoke-WebRequest -Uri $module_url -OutFile $download_path -UseBasicParsing
259259

0 commit comments

Comments
 (0)