diff --git a/.changesets/add-sqlalchemy-and-sqlite-extractors.md b/.changesets/add-sqlalchemy-and-sqlite-extractors.md deleted file mode 100644 index 8b5f2aae..00000000 --- a/.changesets/add-sqlalchemy-and-sqlite-extractors.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -bump: "patch" -integrations: "python" -type: "add" ---- - -Add automatic instrumentation support for SQLAlchemy, SQLite and version 3 of the `psycopg` PostgreSQL adapter. diff --git a/CHANGELOG.md b/CHANGELOG.md index 22a4f063..7dd98446 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # AppSignal for Python Changelog +## 1.3.1 + +_Published on 2024-04-29._ + +### Added + +- [a455252](https://github.com/appsignal/appsignal-python/commit/a4552522962ff6f95d4c61b30ab111addb589719) patch - Add automatic instrumentation support for SQLAlchemy, SQLite and version 3 of the `psycopg` PostgreSQL adapter. + ## 1.3.0 _Published on 2024-04-22._ diff --git a/src/appsignal/__about__.py b/src/appsignal/__about__.py index 5bfd2342..9554ed79 100644 --- a/src/appsignal/__about__.py +++ b/src/appsignal/__about__.py @@ -1,4 +1,4 @@ from __future__ import annotations -__version__ = "1.3.0" +__version__ = "1.3.1"