mirror of
https://framagit.org/framasoft/framaspace/argos.git
synced 2025-04-28 18:02:41 +02:00
🏷 — Bump version (0.2.0)
This commit is contained in:
parent
4fcf0e282e
commit
1c314c4460
3 changed files with 15 additions and 1 deletions
|
@ -2,6 +2,10 @@
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## 0.2.0
|
||||||
|
|
||||||
|
Date: 2024-06-24
|
||||||
|
|
||||||
- 💄📯 — Improve notifications and result(s) pages
|
- 💄📯 — Improve notifications and result(s) pages
|
||||||
- 🔊 — Add level of log before the log message
|
- 🔊 — Add level of log before the log message
|
||||||
— 🔊 — Add a warning messages in the logs if there is no tasks in database. (fix #41)
|
— 🔊 — Add a warning messages in the logs if there is no tasks in database. (fix #41)
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
VERSION = "0.1.1"
|
VERSION = "0.2.0"
|
||||||
|
|
|
@ -26,6 +26,13 @@ make test
|
||||||
# Bump the version, according to semantic versionning
|
# Bump the version, according to semantic versionning
|
||||||
hatch version minor # or `hatch version major`
|
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
|
# Create a tag on the git repository and push it
|
||||||
git tag "$(hatch version)" && git push
|
git tag "$(hatch version)" && git push
|
||||||
|
|
||||||
|
@ -38,6 +45,9 @@ hatch publish
|
||||||
|
|
||||||
Aditionnaly, ensure it works well in a new environment.
|
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
|
## Bumping the version number
|
||||||
|
|
||||||
We follow semantic versionning conventions, and the version is specified in the `argos.__init__.py` file.
|
We follow semantic versionning conventions, and the version is specified in the `argos.__init__.py` file.
|
||||||
|
|
Loading…
Reference in a new issue