From 875c7c4c69767080aac2ec985ae73dfe535cb250 Mon Sep 17 00:00:00 2001 From: David Larlet Date: Sun, 18 Feb 2024 10:22:24 -0500 Subject: [PATCH] fix: Do not use compress anymore for Docker image Fixes #1619 --- docker/entrypoint.sh | 2 -- docs/changelog.md | 4 ++++ umap/__init__.py | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh index 0151897c..d2d2e8de 100755 --- a/docker/entrypoint.sh +++ b/docker/entrypoint.sh @@ -9,7 +9,5 @@ umap wait_for_database umap migrate # then collect static files umap collectstatic --noinput -# compress static files -umap compress # run uWSGI exec uwsgi --ini docker/uwsgi.ini diff --git a/docs/changelog.md b/docs/changelog.md index f0edb49a..377df7ea 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,9 @@ # Changelog +## 2.0.1 - 2024-02-18 + +* Do not use the `compress` command anymore for the Docker image (#1620) + ## 2.0.0 - 2024-02-16 This release is inauguring a new era in versionning uMap: in the future, we'll take care of better documenting breaking changes, so expect more major releases from now on. More details on [how we version](https://docs.umap-project.org/en/master/release/#when-to-make-a-release). diff --git a/umap/__init__.py b/umap/__init__.py index 21014090..b46c2e74 100644 --- a/umap/__init__.py +++ b/umap/__init__.py @@ -1 +1 @@ -VERSION = "2.0.0" +VERSION = "2.0.1"