Skip to content

Commit

Permalink
Bump version to 1.0.2 (#1421)
Browse files Browse the repository at this point in the history
  • Loading branch information
havogt authored Jan 24, 2024
1 parent d5cfa7d commit 11f9c1c
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0.1
current_version = 1.0.2
parse = (?P<major>\d+)\.(?P<minor>\d+)(\.(?P<patch>\d+))?
serialize =
{major}.{minor}.{patch}
Expand Down
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,23 @@

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.2] - 2024-01-24

### Cartesian

- Compatibility of `gt4py.next` Fields with `gt4py.cartesian` computations.
- Fixes for DaCe 0.15.1 compatibility.
- Added `log10` as native function.
- Make `scipy` optional: get `scipy` by installing `gt4py[full]` for best performance with `numpy` backend.

### Storage

- Refactored low-level storage allocation.

### Next

See commit history.

## [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.
Expand Down
2 changes: 1 addition & 1 deletion src/gt4py/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@
__license__: Final = "GPL-3.0-or-later"


__version__: Final = "1.0.1"
__version__: Final = "1.0.2"
__version_info__: Final = pkg_version.parse(__version__)

0 comments on commit 11f9c1c

Please sign in to comment.