Skip to content

Commit bd951e0

Browse files
authored
Release 1.0.0-rc.3 (#317)
1 parent 61da982 commit bd951e0

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,16 @@ This component adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.h
2121

2222
### Security
2323

24+
## [1.0.0-rc.3](https://github.com/signalfx/splunk-otel-dotnet/releases/tag/v1.0.0-rc.3)
25+
26+
This is a release candidate,
27+
built on top of [OpenTelemetry .NET Auto Instrumentation v1.0.0](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/tag/v1.0.0).
28+
29+
### Changed
30+
31+
- Updated [OpenTelemetry .NET Auto Instrumentation](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation):
32+
[`1.0.0`](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/tag/v1.0.0).
33+
2434
## [1.0.0-rc.2](https://github.com/signalfx/splunk-otel-dotnet/releases/tag/v1.0.0-rc.2)
2535

2636
This is a release candidate,

Splunk.OTel.DotNet.psm1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ function Install-OpenTelemetryCore() {
241241
[string]$LocalPath
242242
)
243243

244-
$version = "v1.0.0-rc.2"
244+
$version = "v1.0.0-rc.3"
245245
$installDir = Get-CLIInstallDir-From-InstallDir $InstallDir
246246
$archivePath = $null
247247
$deleteArchive = $true

build/VersionHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public static string GetVersion()
1313

1414
public static string GetVersionWithoutSuffixes()
1515
{
16-
return Version.Value.Split('-')[0];
16+
return Version.Value.Split('-', '+')[0];
1717
}
1818

1919
public static (string Major, string Minor, string Patch) GetVersionParts()

splunk-otel-dotnet-install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ esac
3131

3232
test -z "$OTEL_DOTNET_AUTO_HOME" && OTEL_DOTNET_AUTO_HOME="$HOME/.splunk-otel-dotnet"
3333
test -z "$TMPDIR" && TMPDIR="$(mktemp -d)"
34-
test -z "$VERSION" && VERSION="v1.0.0-rc.2"
34+
test -z "$VERSION" && VERSION="v1.0.0-rc.3"
3535

3636
RELEASES_URL="https://github.com/signalfx/splunk-otel-dotnet/releases"
3737
ARCHIVE="splunk-opentelemetry-dotnet-$OS_TYPE.zip"

0 commit comments

Comments
 (0)