diff --git a/CHANGELOG.md b/CHANGELOG.md index 754b103..d8fa2c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# Current (unreleased) +# v1.7.5 (2024-07-25) - Fix a compatibility issue with Windows platform (data import script). Thanks, @sronveaux! - Major improvements under the hood to map performances (Thanks for the suggestion, @sronveaux and @silenius!) diff --git a/INSTALL.md b/INSTALL.md index 45757fa..7360ebf 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -44,14 +44,14 @@ properly configured. ### Prerequisites - Make sure [Docker](https://docs.docker.com/get-docker/) is installed on your system -- Identify the latest release of GBIF Alert on GitHub at https://github.com/riparias/gbif-alert/tags (currently [v1.7.4](https://github.com/riparias/gbif-alert/releases/tag/v1.7.4)) +- Identify the latest release of GBIF Alert on GitHub at https://github.com/riparias/gbif-alert/tags (currently [v1.7.5](https://github.com/riparias/gbif-alert/releases/tag/v1.7.5)) ### Installation steps - Create a new directory on your system, e.g. `invasive-fishes-nz` following the example above. -- Go to the `docker-compose.yml` file from the latest release of GBIF Alert on GitHub: at the moment https://github.com/riparias/gbif-alert/blob/v1.7.4/docker-compose.yml (note that the URL contains the version number). +- Go to the `docker-compose.yml` file from the latest release of GBIF Alert on GitHub: at the moment https://github.com/riparias/gbif-alert/blob/v1.7.5/docker-compose.yml (note that the URL contains the version number). - Save the file in the directory you have just created. -- Go to the `local_settings_docker.template.py` file from the latest release of GBIF Alert on GitHub: at the moment https://github.com/riparias/gbif-alert/blob/v1.7.4/djangoproject/local_settings_docker.template.py. +- Go to the `local_settings_docker.template.py` file from the latest release of GBIF Alert on GitHub: at the moment https://github.com/riparias/gbif-alert/blob/v1.7.5/djangoproject/local_settings_docker.template.py. - Save the file in the directory you have just created. - Rename this file to `local_settings_docker.py`. - Open a terminal, navigate to the `invasive-fishes-nz` directory and run the following command: `docker-compose up`. diff --git a/docker-compose.yml b/docker-compose.yml index 17e6bf0..2632ec5 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,7 +2,7 @@ version: '3' services: nginx: - image: niconoe/gbif-alert-nginx:1.7.4 + image: niconoe/gbif-alert-nginx:1.7.5 ports: - "1337:80" depends_on: @@ -28,7 +28,7 @@ services: expose: - 6379 gbif-alert: - image : niconoe/gbif-alert:1.7.4 + image : niconoe/gbif-alert:1.7.5 expose: - 8000 depends_on: @@ -44,7 +44,7 @@ services: target: /app/djangoproject/local_settings_docker.py read_only: true rqworker: - image: niconoe/gbif-alert:1.7.4 + image: niconoe/gbif-alert:1.7.5 entrypoint: poetry run python manage.py rqworker default depends_on: db: diff --git a/package.json b/package.json index 4cc2ea0..c490028 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gbif-alert", - "version": "1.7.4", + "version": "1.7.5", "description": "[![Django CI](https://github.com/riparias/early-alert-webapp/actions/workflows/django_tests.yml/badge.svg)](https://github.com/riparias/early-warning-webapp/actions/workflows/django_tests.yml)", "main": "index.js", "scripts": { diff --git a/pyproject.toml b/pyproject.toml index aa2712e..3027453 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "gbif-alert" -version = "1.7.4" +version = "1.7.5" description = "A GBIF-based early alert system" authors = ["Nicolas NoƩ "] package-mode = false