File tree Expand file tree Collapse file tree 4 files changed +15
-7
lines changed
Expand file tree Collapse file tree 4 files changed +15
-7
lines changed Original file line number Diff line number Diff line change 11Release Notes
22=============
33
4+ 0.5.0 - 2025-08-27
5+ -------------------
6+
7+ Changed
8+ ^^^^^^^
9+ - Many updates and new features are introduced in this release, including but not limited to:
10+ - Baseflow separation methods
11+ - Better handling of warnings
12+ - Ability to generate benchmark timeseries and forecasts
13+ - Upgrading to pyspark 4.0
14+ - Documentation updates
15+ - For a full list see: https://github.com/RTIInternational/teehr/milestone/4?closed=1
16+
4170.4.13 - 2025-06-09
518-------------------
619
Original file line number Diff line number Diff line change @@ -117,7 +117,6 @@ Create branch with the following updated to the new version (find and replace ve
117117
118118- ``pyproject.toml ``
119119- ``src/teehr/__init__.py ``
120- - ``docs/sphinx/getting_started/index.rst ``
121120
122121Update the changelog at ``docs/sphinx/changelog/index.rst `` to reflect the changes included in the release.
123122
@@ -136,10 +135,6 @@ Deployment to TEEHR-HUB is a manual process that requires the correct credential
136135
137136Contributing to the Documentation
138137---------------------------------
139- * description
140- * docstring approach (numpy)
141- * pre-commit validation
142- * building and pushing docs
143138
144139The documentation files are in the ``docs/sphinx `` directory.
145140
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " teehr"
3- version = " 0.5.0dev2 "
3+ version = " 0.5.0 "
44description = " Tools for Exploratory Evaluation in Hydrologic Research"
55authors = [
66 " RTI International" ,
Original file line number Diff line number Diff line change 11"""Initialize the TEEHR package."""
22import warnings
33
4- __version__ = "0.5.0dev2 "
4+ __version__ = "0.5.0 "
55
66with warnings .catch_warnings ():
77 warnings .simplefilter ("ignore" , UserWarning )
You can’t perform that action at this time.
0 commit comments