mirror of
https://framagit.org/framasoft/framaspace/argos.git
synced 2025-04-28 09:52:38 +02:00
🏷 — Bump version (0.4.0)
This commit is contained in:
parent
3a3c5852d0
commit
269e551502
4 changed files with 9 additions and 2 deletions
|
@ -2,6 +2,10 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 0.4.0
|
||||
|
||||
Date: 2024-09-04
|
||||
|
||||
- 💄 — Improve email and gotify notifications
|
||||
- ✨ — Add command to test gotify configuration
|
||||
- ✨ — Add nagios command to use as a Nagios probe
|
||||
|
|
2
Makefile
2
Makefile
|
@ -5,7 +5,7 @@ ORANGE=\033[0;33m
|
|||
BLUE=\033[0;34m
|
||||
NC=\033[0m # No Color
|
||||
|
||||
.PHONY: test lint djlint pylint ruff
|
||||
.PHONY: test lint djlint pylint ruff mypy
|
||||
|
||||
venv: ## Create the venv
|
||||
python3 -m venv venv
|
||||
|
|
|
@ -1 +1 @@
|
|||
VERSION = "0.3.1"
|
||||
VERSION = "0.4.0"
|
||||
|
|
|
@ -23,6 +23,9 @@ git checkout main
|
|||
# Ensure the tests run correctly
|
||||
make test
|
||||
|
||||
# Check static typing
|
||||
make mypy
|
||||
|
||||
# Bump the version, according to semantic versionning
|
||||
hatch version minor # or `hatch version major`, or `hatch version fix`
|
||||
|
||||
|
|
Loading…
Reference in a new issue