From b27b2555a86ad89f6519afa7b8a611c30426eae3 Mon Sep 17 00:00:00 2001 From: Maxime Petazzoni Date: Sun, 12 May 2024 20:03:10 -0700 Subject: [PATCH] Release 0.5.0 --- CONTRIBUTING.md | 9 +++++---- pyproject.toml | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 158516a..7694d73 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -5,7 +5,8 @@ When we are ready to release a new version `vx.y.z`, one of the maintainers should: 1. Execute `poetry version {minor,patch}` to update the project version -2. Create a new tag with `git tag vx.y.z`. If the tag doesn't match with the - project version, step 4 validation will fail. -3. Push the tag to the repo with `git push origin vx.y.z` -4. There will be a GitHub Action triggered automatically which will build and publish to PyPI +1. Commit the version change and any release-related changes +1. Create a new tag with `git tag -s -m "Version x.y.z" vx.y.z`. + If the tag doesn't match with the project version, step 4 validation will fail. +1. Push the tag to the repo with `git push origin vx.y.z` +1. There will be a GitHub Action triggered automatically which will build and publish to PyPI diff --git a/pyproject.toml b/pyproject.toml index 38df859..b865639 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wherobots-python-dbapi" -version = "0.4.0" +version = "0.5.0" description = "Python DB-API driver for Wherobots DB" authors = ["Maxime Petazzoni "] license = "Apache 2.0"