Skip to content

Commit

Permalink
Release 1.0.0-rc.3 (#317)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kielek authored Sep 7, 2023
1 parent 61da982 commit bd951e0
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,16 @@ This component adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.h

### Security

## [1.0.0-rc.3](https://github.com/signalfx/splunk-otel-dotnet/releases/tag/v1.0.0-rc.3)

This is a release candidate,
built on top of [OpenTelemetry .NET Auto Instrumentation v1.0.0](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/tag/v1.0.0).

### Changed

- Updated [OpenTelemetry .NET Auto Instrumentation](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation):
[`1.0.0`](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/tag/v1.0.0).

## [1.0.0-rc.2](https://github.com/signalfx/splunk-otel-dotnet/releases/tag/v1.0.0-rc.2)

This is a release candidate,
Expand Down
2 changes: 1 addition & 1 deletion Splunk.OTel.DotNet.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ function Install-OpenTelemetryCore() {
[string]$LocalPath
)

$version = "v1.0.0-rc.2"
$version = "v1.0.0-rc.3"
$installDir = Get-CLIInstallDir-From-InstallDir $InstallDir
$archivePath = $null
$deleteArchive = $true
Expand Down
2 changes: 1 addition & 1 deletion build/VersionHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public static string GetVersion()

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

public static (string Major, string Minor, string Patch) GetVersionParts()
Expand Down
2 changes: 1 addition & 1 deletion splunk-otel-dotnet-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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="v1.0.0-rc.2"
test -z "$VERSION" && VERSION="v1.0.0-rc.3"

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

0 comments on commit bd951e0

Please sign in to comment.