From c1f51f8d3526ef8b73c2da949f16f33cd847498c Mon Sep 17 00:00:00 2001 From: Steven Loria Date: Wed, 17 Jan 2024 11:48:22 -0500 Subject: [PATCH] Add RELEASING.md --- RELEASING.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 RELEASING.md diff --git a/RELEASING.md b/RELEASING.md new file mode 100644 index 0000000..394d6c2 --- /dev/null +++ b/RELEASING.md @@ -0,0 +1,8 @@ +# Releasing + +1. Bump version in `pyproject.toml` and update the changelog + with today's date. +2. Commit: `git commit -m "Bump version and update changelog"` +3. Tag the commit: `git tag x.y.z` +4. Push: `git push --tags origin main`. CI will take care of the + PyPI release.