Skip to content

Commit 104a5d5

Browse files
Bump to 0.6.1 (#572)
1 parent 4e6de21 commit 104a5d5

File tree

6 files changed

+42
-8
lines changed

6 files changed

+42
-8
lines changed

.github/workflows/build_workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

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

1616
jobs:
1717
skip-duplicate-actions:

HISTORY.rst

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,40 @@
22
History
33
=======
44

5+
v0.6.1 (29 November 2023)
6+
-------------------------
7+
8+
This patch version adds a default value to the ``axes`` argument in
9+
``ds.bounds.add_missing_bounds()`` (``axes=["X", "Y", "T"]``). The ``axes``
10+
argument was added in v0.6.0 and did not have a default value, which
11+
inadvertently introduced a breaking change to the API.
12+
13+
``xesmf`` is now a required dependency because its core library, ESMF,
14+
supports Windows as of Feb/2023. More information can be found
15+
`here <https://github.com/conda-forge/esmf-feedstock/pull/65>`_.
16+
17+
Bug Fixes
18+
~~~~~~~~~
19+
20+
- Add defaults to add_missing_bounds by `Ana Ordonez`_ in
21+
https://github.com/xCDAT/xcdat/pull/569
22+
23+
DevOps
24+
~~~~~~
25+
26+
- Make xESMF a required dependency by `Tom Vo`_ in
27+
https://github.com/xCDAT/xcdat/pull/566
28+
29+
Documentation
30+
~~~~~~~~~~~~~
31+
32+
- Update doc: Add link to the ESFG seminar xCDAT introduction video by `Jiwoo Lee`_ in
33+
https://github.com/xCDAT/xcdat/pull/571
34+
- Fix v0.6.0 changelog headers for proper nesting by `Tom Vo`_ in
35+
https://github.com/xCDAT/xcdat/pull/559
36+
37+
**Full Changelog**: https://github.com/xCDAT/xcdat/compare/v0.6.0...v0.6.1
38+
539
v0.6.0 (10 October 2023)
640
------------------------
741

@@ -92,7 +126,6 @@ DevOps
92126

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

95-
96129
v0.5.0 (27 March 2023)
97130
--------------------------
98131

@@ -634,3 +667,4 @@ DevOps
634667
.. _Jiwoo Lee: https://github.com/lee1043
635668
.. _Jill Chengzhu Zhang: https://github.com/chengzhuzhang
636669
.. _Paul Durack: https://github.com/durack1
670+
.. _Ana Ordonez: https://github.com/acordonez

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@
3535
test_suite="tests",
3636
tests_require=test_requires,
3737
url="https://github.com/xCDAT/xcdat",
38-
version="0.6.0",
38+
version="0.6.1",
3939
zip_safe=False,
4040
)

tbump.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
github_url = "https://github.com/xCDAT/xcdat"
33

44
[version]
5-
current = "0.6.0"
5+
current = "0.6.1"
66

77
# Example of a semver regexp.
88
# Make sure this matches current_version before

xcdat/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020
from xcdat.temporal import TemporalAccessor # noqa: F401
2121
from xcdat.utils import compare_datasets # noqa: F401
2222

23-
__version__ = "0.6.0"
23+
__version__ = "0.6.1"

xcdat/bounds.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -146,13 +146,13 @@ def add_missing_bounds( # noqa: C901
146146
``"time_bnds"`` and ``ds.time_bnds`` is present in the dataset.
147147
148148
5. For the "T" axis, its coordinates must be composed of datetime-like
149-
objects (`np.datetime64` or `cftime`).
149+
objects (``np.datetime64`` or ``cftime``).
150150
151151
Parameters
152152
----------
153153
axes : List[str]
154-
List of CF axes that function should operate on. Options include
155-
"X", "Y", "T", or "Z".
154+
List of CF axes that function should operate on, by default
155+
["X", "Y", "T"]. Options include "X", "Y", "T", or "Z".
156156
157157
Returns
158158
-------

0 commit comments

Comments
 (0)