diff --git a/CHANGELOG.md b/CHANGELOG.md index 560d5e9..32396c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## [Unreleased] +## [0.2.1] - 2021-03-28 + ### Fixed - otelsql does not set the status of span to Error while recording error. (#5) @@ -30,6 +32,7 @@ It contains instrumentation for trace and depends on OTel `0.18.0`. - Example code for a basic usage. - Apache-2.0 license. -[Unreleased]: https://github.com/XSAM/otelsql/compare/v0.2.0...HEAD +[Unreleased]: https://github.com/XSAM/otelsql/compare/v0.2.1...HEAD +[0.2.1]: https://github.com/XSAM/otelsql/releases/tag/v0.2.1 [0.2.0]: https://github.com/XSAM/otelsql/releases/tag/v0.2.0 [0.1.0]: https://github.com/XSAM/otelsql/releases/tag/v0.1.0 diff --git a/version.go b/version.go index bacffe8..4975c55 100644 --- a/version.go +++ b/version.go @@ -17,5 +17,5 @@ package otelsql // Version is the current release version of otelsql in use. func Version() string { - return "0.2.0" + return "0.2.1" }