diff --git a/CHANGELOG.md b/CHANGELOG.md index ff74be23f..067e0eea7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,13 +2,18 @@ All notable changes to this project will be documented in this file. -The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Unreleased +## [Unreleased] + +## [0.1.0] - 2021-04-08 ### Added - 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.1.0...HEAD +[0.1.0]: https://github.com/signalfx/splunk-otel-go/releases/tag/v0.1.0 diff --git a/version.go b/version.go index 8e1c13334..84cd7bf5e 100644 --- a/version.go +++ b/version.go @@ -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.0.0" + return "0.1.0" }