diff --git a/Makefile b/Makefile index 9d60018f..a276b168 100644 --- a/Makefile +++ b/Makefile @@ -34,7 +34,7 @@ docker: ## Create a new Docker image and publish it .PHONY: build build: test compilemessages ## Build the Python package before release - @hatch build + @hatch build --clean .PHONY: publish publish: ## Publish the Python package to Pypi diff --git a/docs/changelog.md b/docs/changelog.md index 1261be55..59e4f880 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,27 @@ # Changelog +## 1.3.6 - 2023-07-01 + +- set font-display: swap; for fonts definition +- do not force scroll on popup content +- document Shift-Click and add Ctrl-Shift-click to edit datalayer +- advanced filter should not affect non browsable layers +- expose 'locale' parameter in templates +- pass options at datalayer creation when importing from umap file +- allow to set the lang while generating an anonymous_edit_url +- control links target +- allow to use properties as color value +- add "delete" link in data browser +- more natural sort of features +- be more strict when coordinates are set manually +- allow to sort reverse +- handle CORS errors with an explicit message +- add basic doc about settings +- add umap command in Docker PATH +- add a setting for the number of maps per search +- use SVG icons +- display latest created maps on empty search + ## 1.3.5 - 2023-06-17 - fix stars link in header diff --git a/pyproject.toml b/pyproject.toml index c2807567..9ee38bd6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -59,6 +59,12 @@ docker = [ "uwsgi==2.0.21", ] +[tool.hatch.build] +artifacts = [ + # Required because part of .gitignore (and thus excluded by hatch). + "/umap/static/umap/vendors", +] + [tool.hatch.build.targets.sdist] include = [ "/umap", diff --git a/umap/__init__.py b/umap/__init__.py index 33b4ad51..288108bd 100644 --- a/umap/__init__.py +++ b/umap/__init__.py @@ -1 +1 @@ -VERSION = "1.3.5" +VERSION = "1.3.6"