diff --git a/.github/workflows/test_and_publish.yml b/.github/workflows/test_and_publish.yml index 391eab0..5fb51dc 100644 --- a/.github/workflows/test_and_publish.yml +++ b/.github/workflows/test_and_publish.yml @@ -12,6 +12,8 @@ on: - 'test/**.json.gz' - 'poetry.lock' - 'pyproject.toml' + tags: + - 'v[0-9]+.[0-9]+.[0-9]+' permissions: contents: read diff --git a/CHANGELOG.md b/CHANGELOG.md index 5110d12..473c5f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
-## Unreleased +## [0.13.0] – 2024-04-11 ### Changed * Relax `aiohttp` version requirement to `^3.9` (from `~3.9`) * Relax `joblib` version requirement to `^1.3` (from `~1.3`) @@ -14,6 +14,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). * The string representation of a query without kwargs is now `"query{}"` instead of `"query "` * Log a message when a query is done * Log the error more explicitly when a try fails +* Debug logging when matching Overpass error messages
diff --git a/pyproject.toml b/pyproject.toml index 6d51941..4a2a23f 100755 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "aio-overpass" -version = "0.12.1" +version = "0.13.0" description = "Async client for the Overpass API" authors = ["Tim Wiechers "] license = "MIT"