From 9277273aa9f633688b3d2ea9eefed24b1ed05356 Mon Sep 17 00:00:00 2001 From: spwoodcock Date: Wed, 14 Feb 2024 16:37:25 +0000 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.2.1=20=E2=86=92=200.2.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 16 ++++++++++++++++ Makefile | 2 +- osm_rawdata/__version__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 19 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 05b328b..3cb8825 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +## 0.2.2 (2024-02-14) + +### Fix + +- handle both yaml and json BytesIO PostgresClient config +- handle empty tags in yaml format (not null) +- reading of bytesio config file seeking +- case when geometry is not set during init +- Move GetRecordCount() and getPage() here as they're now asyncpg specific +- allow parsing geojson string for execQuery + +### Refactor + +- fix linting errors for config.py +- remove clip_to_aoi option (default in raw-data-api) + ## 0.2.1 (2024-02-09) ### Fix diff --git a/Makefile b/Makefile index 7897b9c..43a00a3 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PACKAGE := org.osm_rawdata.py NAME := osm-rawdata -VERSION := 0.2.1 +VERSION := 0.2.2 # All python source files # MDS := $(wildcard ./docs/*.md) diff --git a/osm_rawdata/__version__.py b/osm_rawdata/__version__.py index 775eee8..ba71093 100644 --- a/osm_rawdata/__version__.py +++ b/osm_rawdata/__version__.py @@ -1,2 +1,2 @@ """Project version""" -__version__ = "0.2.1" +__version__ = "0.2.2" diff --git a/pyproject.toml b/pyproject.toml index f718ee6..90de0eb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,7 +50,7 @@ log_cli_level = "DEBUG" [tool.commitizen] name = "cz_conventional_commits" -version = "0.2.1" +version = "0.2.2" version_files = [ "pyproject.toml:version", "osm_rawdata/__version__.py",