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
31 changes: 29 additions & 2 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,33 @@
History
=======

v0.11.0 (03 December 2025)
--------------------------

This minor release includes enhancements, bug fixes, and documentation updates. Key
changes introduce land–sea mask generation support, faster startup times through
deferred ``xgcm`` imports, improved logging consistency, and fixes for attribute handling
issues introduced in Xarray v2025.11.0.

Enhancements
~~~~~~~~~~~~

- Add land–sea mask generation by `Jason Boutte`_ in
https://github.com/xCDAT/xcdat/pull/783
- Defer ``xgcm`` import to speed up xCDAT startup time by ~3 seconds by `Tom Vo`_ in
https://github.com/xCDAT/xcdat/pull/810

Bug Fixes
~~~~~~~~~

- Refactor xCDAT logging for consistency and safety by `Tom Vo`_ in
https://github.com/xCDAT/xcdat/pull/811
- Fix attributes behavior change due to Xarray v2025.11.0 by `Tom Vo`_ in
https://github.com/xCDAT/xcdat/pull/818

**Full Changelog**: https://github.com/xCDAT/xcdat/compare/v0.10.1...v0.11.0


v0.10.1 (01 October 2025)
-------------------------

Expand Down Expand Up @@ -37,8 +64,8 @@ DevOps
**Full Changelog**: https://github.com/xCDAT/xcdat/compare/v0.10.0...v0.10.1


v0.10.0 (27 Aug 2025)
---------------------
v0.10.0 (27 August 2025)
------------------------

This release introduces a new **weight threshold option** for temporal operations,
improves regridding alignment, and fixes multiple issues with ``xgcm.Grid`` and
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.10.1"
current = "0.11.0"

# 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.10.1"
__version__ = "0.11.0"
Loading