From 254f8e5df0b1710e062d3137d2b21ad6375764a9 Mon Sep 17 00:00:00 2001 From: Nate Parsons <4307001+thehomebrewnerd@users.noreply.github.com> Date: Thu, 12 May 2022 12:54:22 -0500 Subject: [PATCH] v0.9.0 (#325) * more release.md fixes * v0.9.0 --- composeml/tests/test_version.py | 2 +- composeml/version.py | 2 +- docs/source/release_notes.rst | 17 ++++++++++++----- release.md | 4 ++-- 4 files changed, 16 insertions(+), 9 deletions(-) diff --git a/composeml/tests/test_version.py b/composeml/tests/test_version.py index bcfd65f7..32ca44c6 100644 --- a/composeml/tests/test_version.py +++ b/composeml/tests/test_version.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == "0.8.0" + assert __version__ == "0.9.0" diff --git a/composeml/version.py b/composeml/version.py index 777f190d..3e2f46a3 100644 --- a/composeml/version.py +++ b/composeml/version.py @@ -1 +1 @@ -__version__ = "0.8.0" +__version__ = "0.9.0" diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index 0cc1eaa5..807ec8ca 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -2,14 +2,21 @@ Release Notes ============= -Future Release -============== +.. Future Release + ============== + * Enhancements + * Fixes + * Changes + * Documentation Changes + * Testing Changes + +.. Thanks to the following people for contributing to this release: + +**v0.9.0** May 12, 2022 .. warning:: Compose will no longer support Python 3.7. - - * Enhancements - * Fixes + * Changes * Update ipython to 7.31.1 (:pr:`286`) * Transition to pyproject.toml and setup.cfg (:pr:`310`, :pr:`313`) diff --git a/release.md b/release.md index af18f57f..03534217 100644 --- a/release.md +++ b/release.md @@ -3,8 +3,8 @@ The environment variables `PYPI_USERNAME` and `PYPI_PASSWORD` must be already set in the repository as secrets. To add these variables, go to Secrets in the Settings of the repository. ## Create Release Branch -1. Branch off of main and name the branch the release version number (e.g. v0.1.2) -2. Bump version number in ``composeml/version.py`, and `composeml/tests/test_version.py`. +1. Branch off of main and name the branch the release version number (e.g. `release_v0.1.2`) +2. Bump version number in `composeml/version.py`, and `composeml/tests/test_version.py`. ## Create Release PR A release PR should have the version number as the title and the changelog updates as the PR body text. The contributors line is not necessary.