Skip to content

Commit

Permalink
Merge branch 'main' of github.com:hotosm/osm-rawdata
Browse files Browse the repository at this point in the history
Sync with main.
  • Loading branch information
rsavoye committed Nov 24, 2023
2 parents e1be460 + 9e02e49 commit 6b70429
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ jobs:
with:
build_target: ci
image_tags: |
"ghcr.io/hotosm/osm-rawdata:ci"
"ghcr.io/${{ github.repository }}:ci"
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion osm_rawdata/__version__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Project version"""
__version__ = "0.1.5"
__version__ = "0.1.6"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 6b70429

Please sign in to comment.