Skip to content

Commit

Permalink
Bump to 0.6.1 (#572)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvothecoder authored Nov 29, 2023
1 parent 4e6de21 commit 104a5d5
Show file tree
Hide file tree
Showing 6 changed files with 42 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

env:
CANCEL_OTHERS: true
PATHS_IGNORE: '["**/README.rst", "**/docs/**", "**/ISSUE_TEMPLATE/**", "**/pull_request_template.md", "**/.vscode/**"]'
PATHS_IGNORE: '["**/README.rst", "**/AUTHORS.rst", "**/CODE_OF_CONDUCT.rst", "**/HISTORY.rst", "**/CONTRIBUTING.rst", "**/docs/**", "**/ISSUE_TEMPLATE/**", "**/pull_request_template.md", "**/.vscode/**"]'

jobs:
skip-duplicate-actions:
Expand Down
36 changes: 35 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,40 @@
History
=======

v0.6.1 (29 November 2023)
-------------------------

This patch version adds a default value to the ``axes`` argument in
``ds.bounds.add_missing_bounds()`` (``axes=["X", "Y", "T"]``). The ``axes``
argument was added in v0.6.0 and did not have a default value, which
inadvertently introduced a breaking change to the API.

``xesmf`` is now a required dependency because its core library, ESMF,
supports Windows as of Feb/2023. More information can be found
`here <https://github.com/conda-forge/esmf-feedstock/pull/65>`_.

Bug Fixes
~~~~~~~~~

- Add defaults to add_missing_bounds by `Ana Ordonez`_ in
https://github.com/xCDAT/xcdat/pull/569

DevOps
~~~~~~

- Make xESMF a required dependency by `Tom Vo`_ in
https://github.com/xCDAT/xcdat/pull/566

Documentation
~~~~~~~~~~~~~

- Update doc: Add link to the ESFG seminar xCDAT introduction video by `Jiwoo Lee`_ in
https://github.com/xCDAT/xcdat/pull/571
- Fix v0.6.0 changelog headers for proper nesting by `Tom Vo`_ in
https://github.com/xCDAT/xcdat/pull/559

**Full Changelog**: https://github.com/xCDAT/xcdat/compare/v0.6.0...v0.6.1

v0.6.0 (10 October 2023)
------------------------

Expand Down Expand Up @@ -92,7 +126,6 @@ DevOps

**Full Changelog**: https://github.com/xCDAT/xcdat/compare/v0.5.0...v0.6.0


v0.5.0 (27 March 2023)
--------------------------

Expand Down Expand Up @@ -634,3 +667,4 @@ DevOps
.. _Jiwoo Lee: https://github.com/lee1043
.. _Jill Chengzhu Zhang: https://github.com/chengzhuzhang
.. _Paul Durack: https://github.com/durack1
.. _Ana Ordonez: https://github.com/acordonez
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@
test_suite="tests",
tests_require=test_requires,
url="https://github.com/xCDAT/xcdat",
version="0.6.0",
version="0.6.1",
zip_safe=False,
)
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.6.0"
current = "0.6.1"

# 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 @@ -20,4 +20,4 @@
from xcdat.temporal import TemporalAccessor # noqa: F401
from xcdat.utils import compare_datasets # noqa: F401

__version__ = "0.6.0"
__version__ = "0.6.1"
6 changes: 3 additions & 3 deletions xcdat/bounds.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,13 +146,13 @@ def add_missing_bounds( # noqa: C901
``"time_bnds"`` and ``ds.time_bnds`` is present in the dataset.
5. For the "T" axis, its coordinates must be composed of datetime-like
objects (`np.datetime64` or `cftime`).
objects (``np.datetime64`` or ``cftime``).
Parameters
----------
axes : List[str]
List of CF axes that function should operate on. Options include
"X", "Y", "T", or "Z".
List of CF axes that function should operate on, by default
["X", "Y", "T"]. Options include "X", "Y", "T", or "Z".
Returns
-------
Expand Down

0 comments on commit 104a5d5

Please sign in to comment.