Skip to content

Commit

Permalink
Prepare release v0.3.0 (#62)
Browse files Browse the repository at this point in the history
* Release v0.3.0

* Update changelog

* Change date
  • Loading branch information
pellared authored May 17, 2021
1 parent a570368 commit d42acaf
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,16 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## [Unreleased]

## [0.3.0] - 2021-05-18

The primary changes of this release is added support
for sending data directly to Splunk Observability Cloud.

### Added

- Add support for setting the [Splunk's organization access token](https://docs.splunk.com/observability/admin/authentication-tokens/org-tokens.html)
using the `SPLUNK_ACCESS_TOKEN` environmental variable or `distro.WithAccessToken` option.
It allows exporters sending data directly to the Splunk back-end.
It allows exporters sending data directly to the Splunk Observability Cloud.
To do so, the `OTEL_EXPORTER_JAEGER_ENDPOINT` or `distro.WithEndpoint` must be set
with Splunk back-end ingest endpoint URL: `https://ingest.<REALM>.signalfx.com/v2/trace`.

Expand Down Expand Up @@ -46,7 +51,8 @@ Now the `BatchSpanProcessor` that `distro` configures by default will not experi
- Add [`distro`](./distro) package providing functionality to quickly setup the OpenTelemetry Go implementation with useful Splunk defaults.
- Add [`splunkhttp`](./instrumentation/net/http/splunkhttp) module providing additional Splunk specific instrumentation for `net/http`.

[Unreleased]: https://github.com/signalfx/splunk-otel-go/compare/v0.2.0...HEAD
[Unreleased]: https://github.com/signalfx/splunk-otel-go/compare/v0.3.0...HEAD
[0.3.0]: https://github.com/signalfx/splunk-otel-go/releases/tag/v0.3.0
[0.2.0]: https://github.com/signalfx/splunk-otel-go/releases/tag/v0.2.0
[0.1.0]: https://github.com/signalfx/splunk-otel-go/releases/tag/v0.1.0

Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ package splunkotel // import "github.com/signalfx/splunk-otel-go"

// Version is the current release version of splunk-otel-go in use.
func Version() string {
return "0.2.0"
return "0.3.0"
}

0 comments on commit d42acaf

Please sign in to comment.