Skip to content

Commit 47f534b

Browse files
authored
Releasing v1.1.6 (#2500)
1 parent cc85f8b commit 47f534b

3 files changed

Lines changed: 13 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
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/).
44

5+
## [1.1.6] - 2026-02-27
6+
7+
### Cartesian
8+
9+
- Added a `GT4PY_CARTESIAN_ENABLE_OPENMP` environment variable to disable OpenMP, which allows to support compilers (e.g. `apple-clang`) not shipping with OpenMP by default.
10+
- Fixed issue in the `numpy` backend related to `K`-query expressions, where an internal variable was shadowing any user-provided `k_mask` variable.
11+
12+
### Next
13+
14+
See commit history.
15+
516
## [1.1.5] - 2026-02-24
617

718
### Cartesian

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ dace = [
471471
]
472472

473473
[tool.versioningit]
474-
default-version = "1.1.5+unknown.version.details"
474+
default-version = "1.1.6+unknown.version.details"
475475

476476
[tool.versioningit.format]
477477
dirty = "{base_version}+dirty" # Example: 1.2.3+dirty

src/gt4py/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
# run for any reason, the fallback value defined here would be used,
3636
# so, for consistency, it should be set to the same value as the one
3737
# in `tool.versioningit.default-version` in pyproject.toml.
38-
on_build_version: Final = "1.1.5+unknown.version.details"
38+
on_build_version: Final = "1.1.6+unknown.version.details"
3939

4040
_static_version: tuple[str, pkg_version.Version] | None = None
4141
_dir: list[str] | None = None

0 commit comments

Comments
 (0)