🏷 — Bump version (0.2.0)

This commit is contained in:
Luc Didry 2024-06-24 16:27:07 +02:00
parent 4fcf0e282e
commit 1c314c4460
No known key found for this signature in database
GPG key ID: EA868E12D0257E3C
3 changed files with 15 additions and 1 deletions

View file

@ -2,6 +2,10 @@
## [Unreleased]
## 0.2.0
Date: 2024-06-24
- 💄📯 — Improve notifications and result(s) pages
- 🔊 — Add level of log before the log message
— 🔊 — Add a warning messages in the logs if there is no tasks in database. (fix #41)

View file

@ -1 +1 @@
VERSION = "0.1.1"
VERSION = "0.2.0"

View file

@ -26,6 +26,13 @@ make test
# Bump the version, according to semantic versionning
hatch version minor # or `hatch version major`
# Modify the changelog
editor CHANGELOG.md
# Commit the change
git add argos/__init__.py CHANGELOG
git commit -m "🏷 — Bump version ($(hatch version))"
# Create a tag on the git repository and push it
git tag "$(hatch version)" && git push
@ -38,6 +45,9 @@ hatch publish
Aditionnaly, ensure it works well in a new environment.
Then go to https://framagit.org/framasoft/framaspace/argos/-/releases to create a new release for the new tag.
Use CHANGELOG.md content for that.
## Bumping the version number
We follow semantic versionning conventions, and the version is specified in the `argos.__init__.py` file.