Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions docs/sphinx/changelog/index.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
Release Notes
=============

0.5.3 - 2026-01-07
-----------------------

Changed
^^^^^^^
- Pins PySpark to 4.0.1 in pyproject.toml
- Fixes bug using ``drop_overlapping_assimilation_values`` in NWM operational fetching methods.
- Fixes a bug in ``load_dataframe()``
- Fixes a bug in unpacking metric results
- Updates the Getting Started sphinx documentation

Added
^^^^^
- Check for missing location IDs when cloning from s3
- Row level calculated fields for forecast lead time bins
- Brier Score and Brier Skill Score metrics


0.5.2 - 2025-11-11
------------------

Expand Down
18 changes: 14 additions & 4 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "teehr"
version = "0.5.2"
version = "0.5.3"
description = "Tools for Exploratory Evaluation in Hydrologic Research"
authors = [
"RTI International",
Expand Down Expand Up @@ -29,7 +29,7 @@ h5py = ">=3.12.1,<4"
pyarrow = ">=15.0.0,<21"
httpx = ">=0.25.1,<1"
pandas = ">=2.2.0,<3"
pyspark = {extras = ["pandas-on-spark"], version = ">=4,<5"}
pyspark = {extras = ["pandas-on-spark"], version = "4.0.1"}
dataretrieval = ">=1.0.9,<2"
numba = ">=0.60.0,<1"
arch = ">=7.0.0,<8"
Expand Down
2 changes: 1 addition & 1 deletion src/teehr/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Initialize the TEEHR package."""
import warnings

__version__ = "0.5.2"
__version__ = "0.5.3"

with warnings.catch_warnings():
warnings.simplefilter("ignore", UserWarning)
Expand Down
Loading