Skip to content

Commit

Permalink
Release v0.2.2-alpha (#213)
Browse files Browse the repository at this point in the history
* Bump versions.yaml

* Fix examples/rolldice pkg name

* Add examples/rolldice to versions.yaml

* Prepare alpha for version v0.2.2-alpha

* Update changelog

* Fix e2e test

* Revert e2e test updates

* Update CHANGELOG.md

* Update CHANGELOG.md

---------

Co-authored-by: Mike Goldsmith <goldsmith.mike@gmail.com>
  • Loading branch information
MrAlias and MikeGoldsmith authored Jul 12, 2023
1 parent 7136a5e commit db172c2
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 9 deletions.
11 changes: 8 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,19 @@ OpenTelemetry Go Automatic Instrumentation adheres to [Semantic Versioning](http

## [Unreleased]

## [v0.2.2-alpha] - 2023-07-12

### Added

- Add net/http client instrumentor. ([#91](https://github.com/open-telemetry/opentelemetry-go-instrumentation/pull/91))
- Add context propagation to net/http server instrumentation. ([#92](https://github.com/open-telemetry/opentelemetry-go-instrumentation/pull/92))
- The `net/http` client instrumentor. ([#91](https://github.com/open-telemetry/opentelemetry-go-instrumentation/pull/91))
- Context propagation to the `net/http` server instrumentation. ([#92](https://github.com/open-telemetry/opentelemetry-go-instrumentation/pull/92))
- Simplified example of an HTTP service in `go.opentelemtry.io/auto/examples/rolldice`. ([#195](https://github.com/open-telemetry/opentelemetry-go-instrumentation/pull/195))

### Changed

- Upgrade OpenTelemetry semantic conventions to v1.18.0. ([#162](https://github.com/open-telemetry/opentelemetry-go-instrumentation/pull/162))
- Remove the HTTP path from span names in `net/http`, `gin-gonic/gin`, and `gorilla/mux` instrumentations. ([#161](https://github.com/open-telemetry/opentelemetry-go-instrumentation/pull/161))
- Update generated offsets. ([#186](https://github.com/open-telemetry/opentelemetry-go-instrumentation/pull/186))
- Reduce Docker image size by using different base image. ([#182](https://github.com/open-telemetry/opentelemetry-go-instrumentation/pull/182))

## [v0.2.1-alpha] - 2023-05-15
Expand Down Expand Up @@ -55,7 +59,8 @@ OpenTelemetry Go Automatic Instrumentation adheres to [Semantic Versioning](http

This is the first release of OpenTelemetry Go Automatic Instrumentation.

[Unreleased]: https://github.com/open-telemetry/opentelemetry-go-instrumentation/compare/v0.2.1-alpha...HEAD
[Unreleased]: https://github.com/open-telemetry/opentelemetry-go-instrumentation/compare/v0.2.2-alpha...HEAD
[v0.2.2-alpha]: https://github.com/open-telemetry/opentelemetry-go-instrumentation/releases/tag/v0.2.2-alpha
[v0.2.1-alpha]: https://github.com/open-telemetry/opentelemetry-go-instrumentation/releases/tag/v0.2.1-alpha
[v0.2.0-alpha]: https://github.com/open-telemetry/opentelemetry-go-instrumentation/releases/tag/v0.2.0-alpha
[v0.1.0-alpha]: https://github.com/open-telemetry/opentelemetry-go-instrumentation/releases/tag/v0.1.0-alpha
2 changes: 1 addition & 1 deletion examples/rolldice/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module go.openetelemetry.io/auto/examples/rolldice
module go.opentelemetry.io/auto/examples/rolldice

go 1.20

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.1-alpha"
"stringValue": "v0.2.2-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.1-alpha"
"stringValue": "v0.2.2-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.1-alpha"
"stringValue": "v0.2.2-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.1-alpha"
return "v0.2.2-alpha"
}
3 changes: 2 additions & 1 deletion versions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@

module-sets:
alpha:
version: v0.2.1-alpha
version: v0.2.2-alpha
modules:
- go.opentelemetry.io/auto
- go.opentelemetry.io/auto/examples/rolldice
- go.opentelemetry.io/auto/offsets-tracker
- go.opentelemetry.io/auto/test/e2e/gin
- go.opentelemetry.io/auto/test/e2e/gorillamux
Expand Down

0 comments on commit db172c2

Please sign in to comment.