Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
niconoe committed May 24, 2024
1 parent e8f5c54 commit 31298d0
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Current (unreleased)
# v1.7.4 (2024-05-24)

- Technical: updated all backend dependencies
- Technical: updated the frontend dependencies
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ This tool can also be used to manually activate maintenance mode during complex

- Make sure all tests pass and mypy doesn't report any error
- Update CHANGELOG.md
- Update version number in `pyproject.toml`, `package.json` and docker-compose.yml (! 3 services: gbif-alert, rqworker and nginx)
- Update version number in `pyproject.toml`, `package.json` and `docker-compose.yml` (! 3 services: gbif-alert, rqworker and nginx)
- ! The version number currently also appears in INSTALL.md
- Commit, merge to main, push to GitHub
- Create a new tag (e.g. `v1.1.0`) and push it:
Expand Down
6 changes: 3 additions & 3 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.3](https://github.com/riparias/gbif-alert/releases/tag/v1.7.3))
- 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))

### 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.3/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.4/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.3/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.4/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`.
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3'

services:
nginx:
image: niconoe/gbif-alert-nginx:1.7.3
image: niconoe/gbif-alert-nginx:1.7.4
ports:
- "1337:80"
depends_on:
Expand All @@ -28,7 +28,7 @@ services:
expose:
- 6379
gbif-alert:
image : niconoe/gbif-alert:1.7.3
image : niconoe/gbif-alert:1.7.4
expose:
- 8000
depends_on:
Expand All @@ -44,7 +44,7 @@ services:
target: /app/djangoproject/local_settings_docker.py
read_only: true
rqworker:
image: niconoe/gbif-alert:1.7.3
image: niconoe/gbif-alert:1.7.4
entrypoint: poetry run python manage.py rqworker default
depends_on:
db:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gbif-alert",
"version": "1.7.3",
"version": "1.7.4",
"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": {
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "gbif-alert"
version = "1.7.3"
version = "1.7.4"
description = "A GBIF-based early alert system"
authors = ["Nicolas Noé <[email protected]>"]

Expand Down

0 comments on commit 31298d0

Please sign in to comment.