Skip to content

Commit

Permalink
Prep for 1.2.0 release (#300)
Browse files Browse the repository at this point in the history
* Prep for 1.2.0 release

* Regenerate hydrograph baseline image using fresh env

* Fix readthedocs build

* Compliant requirements file

* Only mention latest version in CITATION.cff
  • Loading branch information
sverhoeven authored Mar 28, 2022
1 parent f04004d commit f0e45c7
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 9 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 = 1.1.4
current_version = 1.2.0

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

## [Unreleased]

## [1.2.0] (2022-03-28)

### Added

- Evaporation Pre-Processor for the LISFLOOD (Lisvap) to forcing ([#282](https://github.com/eWaterCycle/ewatercycle/issues/282))
- Set number of bars in hydrograph ([#298](https://github.com/eWaterCycle/ewatercycle/pull/298))

## [1.1.4] (2022-01-14)

### Added
Expand Down Expand Up @@ -125,7 +132,8 @@ Formatted as described on [https://keepachangelog.com](https://keepachangelog.co
- Empty Python project directory structure
- Added symlink based data files copier

[Unreleased]: https://github.com/eWaterCycle/ewatercycle/compare/1.1.4...HEAD
[Unreleased]: https://github.com/eWaterCycle/ewatercycle/compare/1.2.0...HEAD
[1.2.0]: https://github.com/eWaterCycle/ewatercycle/compare/1.1.4...1.2.0
[1.1.4]: https://github.com/eWaterCycle/ewatercycle/compare/1.1.3...1.1.4
[1.1.3]: https://github.com/eWaterCycle/ewatercycle/compare/1.1.2...1.1.3
[1.1.2]: https://github.com/eWaterCycle/ewatercycle/compare/1.1.1...1.1.2
Expand Down
3 changes: 0 additions & 3 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,4 @@ identifiers:
- description: Latest version of software
type: doi
value: "10.5281/zenodo.5119389"
- description: Version 1.1.0
type: doi
value: "10.5281/zenodo.5175508"
...
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
#
# The short X.Y version.
# The full version, including alpha/beta/rc tags.
version = "1.1.4"
version = "1.2.0"
release = version

# The language for content autogenerated by Sphinx. Refer to documentation
Expand Down
2 changes: 2 additions & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@ ipython
nbsphinx
ruamel.yaml
sphinx-copybutton
# TODO workaround till https://github.com/jupyter/nbconvert/issues/1736 is fixed
jinja2<3.1.0
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 = 1.1.4
version = 1.2.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,3 +1,3 @@
# -*- coding: utf-8 -*-

__version__ = "1.1.4"
__version__ = "1.2.0"
Binary file modified tests/baseline_images/test_analysis/hydrograph.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion tests/test_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

@image_comparison(
baseline_images=["hydrograph"],
remove_text=True,
extensions=["png"],
savefig_kwarg={"bbox_inches": "tight"},
)
Expand Down

0 comments on commit f0e45c7

Please sign in to comment.