diff --git a/.github/workflows/build-ci.yml b/.github/workflows/build-ci.yml index 590ae08..5e99e03 100644 --- a/.github/workflows/build-ci.yml +++ b/.github/workflows/build-ci.yml @@ -17,4 +17,4 @@ jobs: with: build_target: ci image_tags: | - "ghcr.io/hotosm/osm-rawdata:ci" + "ghcr.io/${{ github.repository }}:ci" 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/Dockerfile b/Dockerfile index 5b4a64b..1e2e656 100644 --- a/Dockerfile +++ b/Dockerfile @@ -142,6 +142,7 @@ CMD [""] FROM runtime as prod # Pre-compile packages to .pyc (init speed gains) -RUN python -c "import compileall; compileall.compile_path(maxlevels=10, quiet=1)" +RUN python -c "import compileall; compileall.compile_path(maxlevels=10, quiet=1)" \ + && chmod +x /container-entrypoint.sh ENTRYPOINT ["/container-entrypoint.sh"] CMD ["bash"] 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",