From 2e038824cf19122ad444e3378a3c1c34badd1b61 Mon Sep 17 00:00:00 2001 From: Paul Lietar Date: Wed, 3 Apr 2024 14:39:29 +0100 Subject: [PATCH] Bump version number to 0.1.0 --- README.md | 11 +++++++++++ src/outpack/__about__.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d873983..55b1629 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,17 @@ checkout: hatch run pip install /path/to/outpack_server ``` +## Releasing + +- Increment the version number using [the `hatch version` command](https://hatch.pypa.io/latest/version/). +- Commit the changes and create a PR. +- Get the PR approved and merged to main. +- Create a [GitHub release](https://github.com/mrc-ide/outpack-py/releases/new): + - Set the tag name as `vX.Y.Z`, matching the version reported by hatch. + - Write some release notes (possibly using the `Generate release notes` button). + - Publish the release! +- Sit back and relax while the release gets built and published. +- Check that the new version is available on [PyPI](https://pypi.org/project/outpack/#history). ## License diff --git a/src/outpack/__about__.py b/src/outpack/__about__.py index e8f5621..dbe4c35 100644 --- a/src/outpack/__about__.py +++ b/src/outpack/__about__.py @@ -1,5 +1,5 @@ # SPDX-FileCopyrightText: 2023-present Rich FitzJohn # # SPDX-License-Identifier: MIT -__version__ = "0.0.1" +__version__ = "0.1.0" __name__ = "outpack-py"