From 75fede7b83b2b9b1565b3eb23ed78460e78ed3be Mon Sep 17 00:00:00 2001 From: Hannes Vogt Date: Wed, 7 Feb 2024 16:37:11 +0100 Subject: [PATCH] release: v1.0.3 (#1446) --- .bumpversion.cfg | 2 +- CHANGELOG.md | 14 ++++++++++++++ docs/development/tools/release.md | 4 ++-- src/gt4py/__about__.py | 2 +- 4 files changed, 18 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 9e65fd9ae0..7f5a08b19e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.2 +current_version = 1.0.3 parse = (?P\d+)\.(?P\d+)(\.(?P\d+))? serialize = {major}.{minor}.{patch} diff --git a/CHANGELOG.md b/CHANGELOG.md index 87f3ee9d2b..bfaa0efd7c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ Notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +## [1.0.3] - 2024-02-07 + +### General + +- Support for Python 3.11 and updated dependencies + +### Testing + +- Testing of Jupyter notebooks in CI + +### Next + +See commit history. + ## [1.0.2] - 2024-01-24 ### Cartesian diff --git a/docs/development/tools/release.md b/docs/development/tools/release.md index 1430a6eff8..7feb8711b1 100644 --- a/docs/development/tools/release.md +++ b/docs/development/tools/release.md @@ -17,10 +17,10 @@ Currently, GT4Py releases are published in PyPI (and TestPyPI) and also as commi 4. Commit the changes with the following message: ```bash - $ git commit -m 'Releasing 0.{M}.{m}.{p} version.' + $ git commit -m 'Releasing {M}.{m}.{p} version.' ``` -5. On the GitHub website go to _Releases_ and _Draft a new release_. Choose `v0.{M}.{m}.{p}` as tag and select a branch (usually `main`). Follow the style of the previous releases for the title (`GT4Py v0.{M}.{m}.{p}`) and description. Then _Publish release_. +5. On the GitHub website go to _Releases_ and _Draft a new release_. Choose `v{M}.{m}.{p}` as tag and select a branch (usually `main`). Follow the style of the previous releases for the title (`GT4Py v{M}.{m}.{p}`) and description. Then _Publish release_. 6. Publishing the release will trigger a Github action to deploy to TestPyPI. Install the package from TestPyPi and do basic tests. diff --git a/src/gt4py/__about__.py b/src/gt4py/__about__.py index 10f4607724..7107c1669a 100644 --- a/src/gt4py/__about__.py +++ b/src/gt4py/__about__.py @@ -33,5 +33,5 @@ __license__: Final = "GPL-3.0-or-later" -__version__: Final = "1.0.2" +__version__: Final = "1.0.3" __version_info__: Final = pkg_version.parse(__version__)