diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e154f2..7943f85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## 0.1.6 (2023-11-18) + +### Fix + +- Use style that preserves refs for ways +- Add link to overture doc +- Add lua file that preserves refs +- Add method for creating a table in a database + ## 0.1.5 (2023-11-10) ### Fix diff --git a/Makefile b/Makefile index d51c9af..422ec0f 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PACKAGE := org.osm_rawdata.py NAME := osm-rawdata -VERSION := 0.1.5 +VERSION := 0.1.6 # All python source files # MDS := $(wildcard ./docs/*.md) diff --git a/osm_rawdata/__version__.py b/osm_rawdata/__version__.py index 619fa31..583f795 100644 --- a/osm_rawdata/__version__.py +++ b/osm_rawdata/__version__.py @@ -1,2 +1,2 @@ """Project version""" -__version__ = "0.1.5" +__version__ = "0.1.6" diff --git a/pyproject.toml b/pyproject.toml index 3851141..a3631bf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,7 +48,7 @@ pythonpath = "osm_rawdata" [tool.commitizen] name = "cz_conventional_commits" -version = "0.1.5" +version = "0.1.6" version_files = [ "pyproject.toml:version", "osm_rawdata/__version__.py",