🏷 — Bump version (0.4.0)

This commit is contained in:
Luc Didry 2024-09-04 17:26:20 +02:00
parent 3a3c5852d0
commit 269e551502
No known key found for this signature in database
GPG key ID: EA868E12D0257E3C
4 changed files with 9 additions and 2 deletions

View file

@ -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

View file

@ -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

View file

@ -1 +1 @@
VERSION = "0.3.1"
VERSION = "0.4.0"

View file

@ -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`