From 499c78a7ef2c5834363e00c2317505d35f19e946 Mon Sep 17 00:00:00 2001 From: PatrickAlphac <54278053+PatrickAlphaC@users.noreply.github.com> Date: Mon, 22 May 2023 13:23:58 -0400 Subject: [PATCH] update --- CONTRIBUTING.md | 11 ++++++++++- audit_repo_cloner/__version__.py | 2 +- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6d895de..b062ddf 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -44,7 +44,16 @@ TODO TODO -# Uploading to PyPI +# Upload to PyPI (For most contributors) + +Once the package is ready, do the following: + +1. Update the `__version__` in `__version__.py` +2. Cut a release in the GitHub UI with the same version as what's in `__version__.py` + +The github actions should then automatically push it to PyPI. + +# Uploading to PyPI (Manual) _For maintainers only. You can view the [docs](https://packaging.python.org/en/latest/tutorials/packaging-projects/#generating-distribution-archives) to learn more._ diff --git a/audit_repo_cloner/__version__.py b/audit_repo_cloner/__version__.py index 73b4a65..19173dd 100644 --- a/audit_repo_cloner/__version__.py +++ b/audit_repo_cloner/__version__.py @@ -2,7 +2,7 @@ __description__ = ( "Python CLI for cloning a repo and preparing it for audit report generation." ) -__version__ = "0.2.1" +__version__ = "0.2.2" __author__ = "Cyfrin" __license__ = "MIT" __copyright__ = "Copyright 2023 Cyfrin"