Skip to content

Commit

Permalink
Release 2.1.0 (#399)
Browse files Browse the repository at this point in the history
* Update changelog to 2.1.0

* Bump version

* Update system_setup.rst

---------

Co-authored-by: Stefan Verhoeven <[email protected]>
  • Loading branch information
BSchilperoort and sverhoeven authored Mar 25, 2024
1 parent 58a0150 commit a8fe6e5
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.0.0
current_version = 2.1.0

[bumpversion:file:src/ewatercycle/version.py]
search = __version__ = "{current_version}"
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ Formatted as described on [https://keepachangelog.com](https://keepachangelog.co

## [Unreleased]


## [2.1.0] (2024-03-25)

### Added
- Added new forcing classes ([#393](https://github.com/eWaterCycle/ewatercycle/pull/393)):
- LumpedUserForcing, DistributedUserForcing - have the variable names as an argument, as well as an optional post-processor that can derive addition variables from the downloaded data.
Expand Down Expand Up @@ -216,7 +219,8 @@ Everthing listed at [2.0.0](2.0.0), but without the adding models part.
- Empty Python project directory structure
- Added symlink based data files copier

[Unreleased]: https://github.com/eWaterCycle/ewatercycle/compare/2.0.0...HEAD
[Unreleased]: https://github.com/eWaterCycle/ewatercycle/compare/2.1.0...HEAD
[2.1.0]: https://github.com/eWaterCycle/ewatercycle/compare/2.0.0...2.1.0
[2.0.0]: https://github.com/eWaterCycle/ewatercycle/compare/2.0.0b2...2.0.0
[2.0.0b2]: https://github.com/eWaterCycle/ewatercycle/compare/1.4.1...2.0.0b2
[1.4.1]: https://github.com/eWaterCycle/ewatercycle/compare/1.4.0...1.4.1
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
#
# The short X.Y version.
# The full version, including alpha/beta/rc tags.
version = "2.0.0"
version = "2.1.0"
release = version

# The language for content autogenerated by Sphinx. Refer to documentation
Expand Down
2 changes: 1 addition & 1 deletion docs/system_setup.rst
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ To download ERA5 data files you can use the
pip install era5cli
Follow `instructions <https://era5cli.readthedocs.io/en/stable/instructions.html>`_ to get access to data.
Follow `instructions <https://era5cli.readthedocs.io/en/stable/getting_started/>`_ to get access to data.

As an example, the hourly ERA5 data for the years 1990
and 1991 and for variables pr, psl, tas, taxmin, tasmax, tdps, uas,
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = ewatercycle
version = 2.0.0
version = 2.1.0
description = A Python package for running and validating a hydrology model
long_description = file: README.md
long_description_content_type = text/markdown
Expand Down
2 changes: 1 addition & 1 deletion src/ewatercycle/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Version of ewatercycle package."""
__version__ = "2.0.0"
__version__ = "2.1.0"

0 comments on commit a8fe6e5

Please sign in to comment.