Skip to content

Commit

Permalink
Releasing 1.0.4 version. (#1654)
Browse files Browse the repository at this point in the history
  • Loading branch information
havogt authored Sep 20, 2024
1 parent 21b1dfc commit b6d4427
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 2 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,34 @@

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.4] - 2024-09-20

### License

GT4Py is now licensed under the BSD license. SPDX-License-Identifier: BSD-3-Clause

### Cartesian

- Introduced a `GlobalTable` which is a data dimensions only Field. Access is provided via `.A` which also becomes a way to access data dimensions on regular Field.
- Added an error message if a non existing backend is selected.
- Allow setting compiler optimization level and flags on a per stencil basis
- Added `GT4PY_EXTRA_COMPILE_ARGS`, `GT4PY_EXTRA_LINK_ARGS` and `DACE_DEFAULT_BLOCK_SIZE` environment variables
- Fixes for the DaCe backend
- Various style modernizations

#### Deprecation

- The `cuda` backend is deprecated (enable by setting environment variable `GT4PY_GTC_CUDA_USE=1`), use `gt:gpu` or `dace:gpu` instead.

### Development

- Replaced flake8, black with ruff
- Added CI plan with GH200 GPUs

### Next

See commit history.

## [1.0.3] - 2024-02-07

### General
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ Source = 'https://github.com/GridTools/gt4py'
allow_dirty = false
commit = false
commit_args = ''
current_version = '1.0.3'
current_version = "1.0.4"
ignore_missing_version = false
message = 'Bump version: {current_version} → {new_version}'
parse = '(?P<major>\d+)\.(?P<minor>\d+)(\.(?P<patch>\d+))?'
Expand Down
2 changes: 1 addition & 1 deletion src/gt4py/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@
__license__: Final = "BSD-3-Clause"


__version__: Final = "1.0.3"
__version__: Final = "1.0.4"
__version_info__: Final = pkg_version.parse(__version__)

0 comments on commit b6d4427

Please sign in to comment.