From 465cb2d8a564ac5809bae6e1832b60769aa156f5 Mon Sep 17 00:00:00 2001 From: Vincent Emonet Date: Thu, 30 Nov 2023 18:12:04 +0100 Subject: [PATCH] bump to 0.2.2 --- README.md | 5 +++++ src/trapi_predict_kit/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1a50072..02d737a 100644 --- a/README.md +++ b/README.md @@ -291,6 +291,11 @@ The deployment of new releases is done automatically by a GitHub Action workflow 1. Make sure the `PYPI_TOKEN` secret has been defined in the GitHub repository (in Settings > Secrets > Actions). You can get an API token from PyPI at [pypi.org/manage/account](https://pypi.org/manage/account). 2. Increment the `version` number in the `pyproject.toml` file in the root folder of the repository. + + ```bash + hatch version fix + ``` + 3. Create a new release on GitHub, which will automatically trigger the publish workflow, and publish the new release to PyPI. You can also manually trigger the workflow from the Actions tab in your GitHub repository webpage. diff --git a/src/trapi_predict_kit/__init__.py b/src/trapi_predict_kit/__init__.py index 10621a8..53f9f9e 100644 --- a/src/trapi_predict_kit/__init__.py +++ b/src/trapi_predict_kit/__init__.py @@ -12,4 +12,4 @@ get_run_metadata, ) -__version__ = "0.2.1" +__version__ = "0.2.2"