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
10 changes: 8 additions & 2 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,18 +1,24 @@
Version History
===============

v0.16.0 (2025-12-16)
v0.16.0 (2025-12-17)
--------------------

Breaking Changes
^^^^^^^^^^^^^^^^
* ``clisops``>=0.16.2, ``numpy``>=1.26, and ``xesmf``>=0.9.2 are now required.
* ``clisops``>=0.17.0, ``numpy``>=1.26, and ``xesmf``>=0.9.2 are now required.
* Dropped support for Python3.10. Added support for Python3.13.

Fixes
^^^^^
* Addressed thousands of `DeprecationWarning` messages emitted from ``xarray`` in the testing suite.

Other Changes
^^^^^^^^^^^^^
* Updated tests.
* Updated dependencies.
* Pinned ``elasticsearch``\<9.0 to avoid compatibility issues.

v0.15.0 (2025-03-24)
--------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
# the built documents.
#
# The short X.Y version.
version = "0.15.0"
version = "0.16.0"
# The full version, including alpha/beta/rc tags.
release = version

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ target-version = [
]

[tool.bumpversion]
current_version = "0.15.0"
current_version = "0.16.0"
commit = true
commit_args = "--no-verify"
tag = false
Expand Down
2 changes: 1 addition & 1 deletion src/daops/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
__author__ = """Elle Smith"""
__contact__ = "eleanor.smith@stfc.ac.uk"
__copyright__ = "Copyright 2018-2025 United Kingdom Research and Innovation"
__version__ = "0.15.0"
__version__ = "0.16.0"

from functools import lru_cache

Expand Down