From bdcd3fb630304764f7ca572a71b99a38eb23b3dc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 26 Apr 2026 12:43:42 +0000 Subject: [PATCH] chore: release v0.2.1 --- CHANGELOG.md | 16 ++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3957506..737dd95 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.1](https://github.com/jdrouet/sqlx-tracing/compare/v0.2.0...v0.2.1) - 2026-04-26 + +### Added + +- add MySQL support ([#4](https://github.com/jdrouet/sqlx-tracing/pull/4)) +- *(pool)* Add try_begin method ([#10](https://github.com/jdrouet/sqlx-tracing/pull/10)) +- add `Transaction::commit` and `Transaction::rollback` ([#5](https://github.com/jdrouet/sqlx-tracing/pull/5)) + +### Fixed + +- relax Clone bound on Pool ([#14](https://github.com/jdrouet/sqlx-tracing/pull/14)) + +### Other + +- bump dependencies ([#15](https://github.com/jdrouet/sqlx-tracing/pull/15)) + ## [0.2.0](https://github.com/jdrouet/sqlx-tracing/compare/v0.1.0...v0.2.0) - 2025-10-02 ### Added diff --git a/Cargo.lock b/Cargo.lock index 317a0d6..4e70428 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2567,7 +2567,7 @@ dependencies = [ [[package]] name = "sqlx-tracing" -version = "0.2.0" +version = "0.2.1" dependencies = [ "anyhow", "futures", diff --git a/Cargo.toml b/Cargo.toml index 293e2e3..d87fe08 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sqlx-tracing" -version = "0.2.0" +version = "0.2.1" edition = "2024" description = "OpenTelemetry-compatible tracing for SQLx database operations in Rust." license = "MIT"