Skip to content

Commit

Permalink
Prepare v0.3.0-alpha release (#301)
Browse files Browse the repository at this point in the history
Prepares the v0.3.0-alpha release.
  • Loading branch information
MikeGoldsmith authored Sep 12, 2023
1 parent aef533a commit 171ae2d
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 11 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ OpenTelemetry Go Automatic Instrumentation adheres to [Semantic Versioning](http

## [Unreleased]

## [v0.3.0-alpha] - 2023-09-12

### Added

- Add database/sql instrumentation ([#240](https://github.com/open-telemetry/opentelemetry-go-instrumentation/pull/240))
Expand Down Expand Up @@ -131,7 +133,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.2-alpha...HEAD
[Unreleased]: https://github.com/open-telemetry/opentelemetry-go-instrumentation/compare/v0.3.0-alpha...HEAD
[v0.3.0-alpha]: https://github.com/open-telemetry/opentelemetry-go-instrumentation/releases/tag/v0.3.0-alpha
[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
Expand Down
2 changes: 1 addition & 1 deletion internal/test/e2e/databasesql/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.2-alpha"
"stringValue": "v0.3.0-alpha"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion internal/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.2-alpha"
"stringValue": "v0.3.0-alpha"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion internal/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.2-alpha"
"stringValue": "v0.3.0-alpha"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion internal/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.2-alpha"
"stringValue": "v0.3.0-alpha"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/databasesql/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.2-alpha"
"stringValue": "v0.3.0-alpha"
}
},
{
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.2-alpha"
"stringValue": "v0.3.0-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.2-alpha"
"stringValue": "v0.3.0-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.2-alpha"
"stringValue": "v0.3.0-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.2-alpha"
return "v0.3.0-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.2-alpha
version: v0.3.0-alpha
modules:
- go.opentelemetry.io/auto
- go.opentelemetry.io/auto/examples/rolldice
Expand Down

0 comments on commit 171ae2d

Please sign in to comment.