diff --git a/CHANGELOG.md b/CHANGELOG.md index dd67279..d21fb60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.3.0 (2024-05-20) + +### Feat + +- update env var UNDERPASS_API_URL --> RAW_DATA_API_URL + ## 0.2.4 (2024-04-07) ### Fix diff --git a/Makefile b/Makefile index b3be410..f90335a 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PACKAGE := org.osm_rawdata.py NAME := osm-rawdata -VERSION := 0.2.4 +VERSION := 0.3.0 # All python source files # MDS := $(wildcard ./docs/*.md) diff --git a/osm_rawdata/__version__.py b/osm_rawdata/__version__.py index 9d7b3ef..8dd7536 100644 --- a/osm_rawdata/__version__.py +++ b/osm_rawdata/__version__.py @@ -1,2 +1,2 @@ """Project version""" -__version__ = "0.2.4" +__version__ = "0.3.0" diff --git a/pyproject.toml b/pyproject.toml index 2c3202c..7cf7257 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,7 +50,7 @@ log_cli_level = "DEBUG" [tool.commitizen] name = "cz_conventional_commits" -version = "0.2.4" +version = "0.3.0" version_files = [ "pyproject.toml:version", "osm_rawdata/__version__.py",