Skip to content

Commit 36a3539

Browse files
Bump to 0.3.3 (#358)
1 parent 3e57737 commit 36a3539

File tree

5 files changed

+36
-4
lines changed

5 files changed

+36
-4
lines changed

HISTORY.rst

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,38 @@
22
History
33
=======
44

5+
v0.3.3 (12 October 2022)
6+
========================
7+
8+
This patch release fixes a bug where calculating daily climatologies/departures for
9+
specific CF calendar types that have leap days breaks when using ``cftime``. It also
10+
includes documentation updates.
11+
12+
Bug Fixes
13+
---------
14+
15+
- Drop leap days based on CF calendar type to calculate daily
16+
climatologies and departures by `Tom Vo`_ and `Jiwoo Lee`_ in
17+
https://github.com/xCDAT/xcdat/pull/350
18+
19+
- Affected CF calendar types include ``gregorian``, ``proleptic_gregorian``, and
20+
``standard``
21+
- Since a solution implementation for handling leap days is
22+
generally opinionated, we decided to go with the route of least
23+
complexity and overhead (drop the leap days before performing
24+
calculations). We may revisit adding more options for the user to determine how
25+
they want to handle leap days (based on how valuable/desired it is).
26+
27+
Documentation
28+
-------------
29+
30+
- Add horizontal regridding gallery notebook by `Jason Boutte`_ in
31+
https://github.com/xCDAT/xcdat/pull/328
32+
- Add doc for staying up to date with releases by `Tom Vo`_ in
33+
https://github.com/xCDAT/xcdat/pull/355
34+
35+
**Full Changelog**: https://github.com/xCDAT/xcdat/compare/v0.3.2...v0.3.3
36+
537
v0.3.2 (16 September 2022)
638
==========================
739

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ See `LICENSE <LICENSE>`_ for details
123123
xCDAT on HPC / Jupyter <getting-started-hpc-jupyter>
124124
Gallery <gallery>
125125
API Reference <api>
126+
Changelog <history>
126127
Frequently Asked Questions <faqs>
127128

128129
.. toctree::
@@ -132,7 +133,6 @@ See `LICENSE <LICENSE>`_ for details
132133

133134
Contributing Guide <contributing>
134135
Project Maintenance <project-maintenance>
135-
What’s New <history>
136136
Team <authors>
137137

138138
.. toctree::

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.3.2",
38+
version="0.3.3",
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.3.2"
5+
current = "0.3.3"
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
@@ -19,4 +19,4 @@
1919
from xcdat.temporal import TemporalAccessor # noqa: F401
2020
from xcdat.utils import compare_datasets # noqa: F401
2121

22-
__version__ = "0.3.2"
22+
__version__ = "0.3.3"

0 commit comments

Comments
 (0)