From 269e55150268cb69f0e21ac062cedd51350f7d3c Mon Sep 17 00:00:00 2001 From: Luc Didry Date: Wed, 4 Sep 2024 17:26:20 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8F=B7=20=E2=80=94=20Bump=20version=20(0.?= =?UTF-8?q?4.0)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 4 ++++ Makefile | 2 +- argos/__init__.py | 2 +- docs/developer/release.md | 3 +++ 4 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0518bd7..e9a7402 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Makefile b/Makefile index 33d445a..53d3315 100644 --- a/Makefile +++ b/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 diff --git a/argos/__init__.py b/argos/__init__.py index a9febb4..6cc293e 100644 --- a/argos/__init__.py +++ b/argos/__init__.py @@ -1 +1 @@ -VERSION = "0.3.1" +VERSION = "0.4.0" diff --git a/docs/developer/release.md b/docs/developer/release.md index b30e2b3..8b8e325 100644 --- a/docs/developer/release.md +++ b/docs/developer/release.md @@ -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`