diff --git a/.changesets/simplify-the-implementation-of-set_gauge.md b/.changesets/simplify-the-implementation-of-set_gauge.md deleted file mode 100644 index e457227..0000000 --- a/.changesets/simplify-the-implementation-of-set_gauge.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -bump: patch -type: change ---- - -Simplify the implementation of `set_gauge` in favor of the newer OpenTelemetry's sync implementation. diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e0625b..a448dd3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # AppSignal for Python Changelog +## 1.3.10 + +_Published on 2024-08-23._ + +### Changed + +- [f9b17a7](https://github.com/appsignal/appsignal-python/commit/f9b17a753cb8178851658334f6235add43acc89d) patch - Simplify the implementation of `set_gauge` in favor of the newer OpenTelemetry's sync implementation. + ## 1.3.9 _Published on 2024-08-19._ diff --git a/src/appsignal/__about__.py b/src/appsignal/__about__.py index dd2f06a..21b9440 100644 --- a/src/appsignal/__about__.py +++ b/src/appsignal/__about__.py @@ -1,4 +1,4 @@ from __future__ import annotations -__version__ = "1.3.9" +__version__ = "1.3.10"