From f08eef226a73e1bb3ec96a1edf20a8b03459f55c Mon Sep 17 00:00:00 2001 From: spwoodcock Date: Mon, 5 Aug 2024 11:44:45 +0100 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.3.0=20=E2=86=92=200.3.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 13 +++++++++++++ Makefile | 2 +- osm_rawdata/__version__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d21fb60..76c4ec2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## 0.3.1 (2024-08-05) + +### Fix + +- do not continue to poll raw-data-api on failure (#28) +- Add AS geometry to make parsing the results cleaner, fix duplicate columns in SELECT (#25) +- Fix typo, args.uri, not args.url (#22) +- Process the refs for ways when using a local database (#20) + +### Refactor + +- revert default line length 132 --> 88 char + ## 0.3.0 (2024-05-20) ### Feat diff --git a/Makefile b/Makefile index f90335a..3150752 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PACKAGE := org.osm_rawdata.py NAME := osm-rawdata -VERSION := 0.3.0 +VERSION := 0.3.1 # All python source files # MDS := $(wildcard ./docs/*.md) diff --git a/osm_rawdata/__version__.py b/osm_rawdata/__version__.py index 8dd7536..ff5d828 100644 --- a/osm_rawdata/__version__.py +++ b/osm_rawdata/__version__.py @@ -1,2 +1,2 @@ """Project version""" -__version__ = "0.3.0" +__version__ = "0.3.1" diff --git a/pyproject.toml b/pyproject.toml index 94f5802..6e61fbc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,7 +50,7 @@ log_cli_level = "DEBUG" [tool.commitizen] name = "cz_conventional_commits" -version = "0.3.0" +version = "0.3.1" version_files = [ "pyproject.toml:version", "osm_rawdata/__version__.py",