diff --git a/CHANGELOG.md b/CHANGELOG.md index 7943f85..64166e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.1.7 (2023-12-05) + +### Fix + +- Add method to create tables in the database + ## 0.1.6 (2023-11-18) ### Fix diff --git a/Makefile b/Makefile index 422ec0f..78ba6ec 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PACKAGE := org.osm_rawdata.py NAME := osm-rawdata -VERSION := 0.1.6 +VERSION := 0.1.7 # All python source files # MDS := $(wildcard ./docs/*.md) diff --git a/osm_rawdata/__version__.py b/osm_rawdata/__version__.py index 583f795..bf84e4c 100644 --- a/osm_rawdata/__version__.py +++ b/osm_rawdata/__version__.py @@ -1,2 +1,2 @@ """Project version""" -__version__ = "0.1.6" +__version__ = "0.1.7" diff --git a/pyproject.toml b/pyproject.toml index 01f10c0..fc21654 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,7 +48,7 @@ pythonpath = "osm_rawdata" [tool.commitizen] name = "cz_conventional_commits" -version = "0.1.6" +version = "0.1.7" version_files = [ "pyproject.toml:version", "osm_rawdata/__version__.py",