From 98e7cad4d9ca3136b3506effffe9a05309f25bb2 Mon Sep 17 00:00:00 2001 From: Hannes Vogt Date: Mon, 20 Feb 2023 12:47:45 +0100 Subject: [PATCH] Bump version to 1.0.1 (#1174) --- .bumpversion.cfg | 2 +- CHANGELOG.md | 9 +++++++++ src/gt4py/__about__.py | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 5fd455431d..d7a3acaac1 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.0 +current_version = 1.0.1 parse = (?P\d+)\.(?P\d+)(\.(?P\d+))? serialize = {major}.{minor}.{patch} diff --git a/CHANGELOG.md b/CHANGELOG.md index f9a73ab545..9da5f88458 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ 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.1] - 2023-02-20 + +First version including the experimental `gt4py.next` aka *Declarative GT4Py*. The `gt4py.next` package is excluded from semantic versioning. + +### Cartesian + +- Parametrized dtype: see option 4 of [the gtscript concept workshop](https://github.com/GridTools/concepts/blob/master/collaboration/gtscript-workshop/GTScript-Syntax-Discussion.md#gtscript-syntax-discussed-issues-20200829]) + + ## [1.0.0] - 2022-12-21 ### Added diff --git a/src/gt4py/__about__.py b/src/gt4py/__about__.py index 595170865a..57b914f25b 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.0" +__version__: Final = "1.0.1" __version_info__: Final = pkg_version.parse(__version__)