Skip to content

Commit

Permalink
Release v0.2.1-alpha (#158)
Browse files Browse the repository at this point in the history
* Release v0.3.0-alpha

* remove unnecessary changelog entry

* update version to 0.2.1-alpha

* add changelog entry for dockerhub destination
  • Loading branch information
MikeGoldsmith committed May 15, 2023
1 parent aa2cc07 commit 48d3c3f
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 6 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,17 @@ OpenTelemetry Go Automatic Instrumentation adheres to [Semantic Versioning](http

## [Unreleased]

## [v0.2.1-alpha] - 2023-05-15

### Fixed

- Fix gRPC instrumentation memory access issue on newer kernels. ([#150](https://github.com/open-telemetry/opentelemetry-go-instrumentation/pull/150))
- Fix missing spans in gorillamux instrumentation. ([#86](https://github.com/open-telemetry/opentelemetry-go-instrumentation/pull/86))

### Changed

- Only pull docker image if not present for the emojivoto example. ([#149](https://github.com/open-telemetry/opentelemetry-go-instrumentation/pull/149))
- Update HTTP span names to include method and route to match semantic conventions. ([#143](https://github.com/open-telemetry/opentelemetry-go-instrumentation/pull/143))
- Add DockerHub to release destinations. ([#152](https://github.com/open-telemetry/opentelemetry-go-instrumentation/pull/152))

## [v0.2.0-alpha] - 2023-05-03

Expand Down
2 changes: 1 addition & 1 deletion test/e2e/gin/traces.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
{
"key": "telemetry.auto.version",
"value": {
"stringValue": "v0.2.0-alpha"
"stringValue": "v0.2.1-alpha"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/gorillamux/traces.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
{
"key": "telemetry.auto.version",
"value": {
"stringValue": "v0.2.0-alpha"
"stringValue": "v0.2.1-alpha"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/nethttp/traces.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
{
"key": "telemetry.auto.version",
"value": {
"stringValue": "v0.2.0-alpha"
"stringValue": "v0.2.1-alpha"
}
},
{
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 auto

// Version is the current release version of OpenTelemetry Go auto-instrumentation in use.
func Version() string {
return "v0.2.0-alpha"
return "v0.2.1-alpha"
}
2 changes: 1 addition & 1 deletion versions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

module-sets:
alpha:
version: v0.2.0-alpha
version: v0.2.1-alpha
modules:
- go.opentelemetry.io/auto
- go.opentelemetry.io/auto/offsets-tracker
Expand Down

0 comments on commit 48d3c3f

Please sign in to comment.