Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,28 @@
History
=======

v0.11.3 (16 July 2026)
--------------------------

This patch release fixes xgcm 0.10 compatibility by translating xCDAT's legacy grid
options to the new padding API. This restores vertical regridding without requiring
caller changes. The minimum xgcm version is now 0.10.0, which is required for the new
padding API. It also constrains regionmask >=0.11.0 for numpy 2.0 compatibility.

Bug Fixes
~~~~~~~~~

- Fix xgcm 0.10 padding compatibility by `Tom Vo`_ in https://github.com/xCDAT/xcdat/pull/840

DevOps
~~~~~~

- Constrain regionmask >=0.11.0 for numpy 2.0 compatibility by `Tom Vo`_ in https://github.com/xCDAT/xcdat/pull/838


**Full Changelog**: https://github.com/xCDAT/xcdat/compare/v0.11.2...v0.11.3


v0.11.2 (02 February 2026)
--------------------------

Expand Down
2 changes: 1 addition & 1 deletion tbump.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
github_url = "https://github.com/xCDAT/xcdat"

[version]
current = "0.11.2"
current = "0.11.3"

# Example of a semver regexp.
# Make sure this matches current_version before
Expand Down
2 changes: 1 addition & 1 deletion xcdat/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@
# Initialize xCDAT logger once when the package is imported
_setup_xcdat_logger()

__version__ = "0.11.2"
__version__ = "0.11.3"
Loading