Skip to content

Commit 79bc0ab

Browse files
authored
518 release v05 (#519)
* bump version * documentation updates * doc update
1 parent 29b8682 commit 79bc0ab

File tree

4 files changed

+15
-7
lines changed

4 files changed

+15
-7
lines changed

docs/sphinx/changelog/index.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
Release 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+
417
0.4.13 - 2025-06-09
518
-------------------
619

docs/sphinx/development/index.rst

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff 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

122121
Update 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

137136
Contributing to the Documentation
138137
---------------------------------
139-
* description
140-
* docstring approach (numpy)
141-
* pre-commit validation
142-
* building and pushing docs
143138

144139
The documentation files are in the ``docs/sphinx`` directory.
145140

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "teehr"
3-
version = "0.5.0dev2"
3+
version = "0.5.0"
44
description = "Tools for Exploratory Evaluation in Hydrologic Research"
55
authors = [
66
"RTI International",

src/teehr/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""Initialize the TEEHR package."""
22
import warnings
33

4-
__version__ = "0.5.0dev2"
4+
__version__ = "0.5.0"
55

66
with warnings.catch_warnings():
77
warnings.simplefilter("ignore", UserWarning)

0 commit comments

Comments
 (0)