Skip to content

Commit

Permalink
Bump to 0.3.3 (#358)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvothecoder committed Oct 12, 2022
1 parent 3e57737 commit 36a3539
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 4 deletions.
32 changes: 32 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,38 @@
History
=======

v0.3.3 (12 October 2022)
========================

This patch release fixes a bug where calculating daily climatologies/departures for
specific CF calendar types that have leap days breaks when using ``cftime``. It also
includes documentation updates.

Bug Fixes
---------

- Drop leap days based on CF calendar type to calculate daily
climatologies and departures by `Tom Vo`_ and `Jiwoo Lee`_ in
https://github.com/xCDAT/xcdat/pull/350

- Affected CF calendar types include ``gregorian``, ``proleptic_gregorian``, and
``standard``
- Since a solution implementation for handling leap days is
generally opinionated, we decided to go with the route of least
complexity and overhead (drop the leap days before performing
calculations). We may revisit adding more options for the user to determine how
they want to handle leap days (based on how valuable/desired it is).

Documentation
-------------

- Add horizontal regridding gallery notebook by `Jason Boutte`_ in
https://github.com/xCDAT/xcdat/pull/328
- Add doc for staying up to date with releases by `Tom Vo`_ in
https://github.com/xCDAT/xcdat/pull/355

**Full Changelog**: https://github.com/xCDAT/xcdat/compare/v0.3.2...v0.3.3

v0.3.2 (16 September 2022)
==========================

Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ See `LICENSE <LICENSE>`_ for details
xCDAT on HPC / Jupyter <getting-started-hpc-jupyter>
Gallery <gallery>
API Reference <api>
Changelog <history>
Frequently Asked Questions <faqs>

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

Contributing Guide <contributing>
Project Maintenance <project-maintenance>
What’s New <history>
Team <authors>

.. toctree::
Expand Down
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.3.2",
version="0.3.3",
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.3.2"
current = "0.3.3"

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

__version__ = "0.3.2"
__version__ = "0.3.3"

0 comments on commit 36a3539

Please sign in to comment.