File tree Expand file tree Collapse file tree 5 files changed +36
-4
lines changed Expand file tree Collapse file tree 5 files changed +36
-4
lines changed Original file line number Diff line number Diff line change 22History
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+
537v0.3.2 (16 September 2022)
638==========================
739
Original file line number Diff line number Diff 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 ::
Original file line number Diff line number Diff line change 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)
Original file line number Diff line number Diff line change 22github_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
Original file line number Diff line number Diff line change 1919from xcdat .temporal import TemporalAccessor # noqa: F401
2020from xcdat .utils import compare_datasets # noqa: F401
2121
22- __version__ = "0.3.2 "
22+ __version__ = "0.3.3 "
You can’t perform that action at this time.
0 commit comments