Skip to content

Commit 5b97aa0

Browse files
Release 0.2.1 (#77)
* Update bumpversion config * Bump version to 0.2.1 * Update the changelog * Add land cover to changelog * Pin pandas to <= 2
1 parent a5be424 commit 5b97aa0

5 files changed

Lines changed: 18 additions & 11 deletions

File tree

.bumpversion.cfg

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,10 @@
11
[bumpversion]
2-
current_version = 0.2.0
3-
4-
[comment]
5-
comment = The contents of this file cannot be merged with that of setup.cfg until https://github.com/c4urself/bump2version/issues/185 is resolved
2+
current_version = 0.2.1
63

74
[bumpversion:file:PyStemmusScope/__init__.py]
85
search = __version__ = "{current_version}"
96
replace = __version__ = "{new_version}"
107

11-
[bumpversion:file:setup.cfg]
12-
search = version = {current_version}
13-
replace = version = {new_version}
14-
158
[bumpversion:file:CITATION.cff]
169
search = version: "{current_version}"
1710
replace = version: "{new_version}"

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ authors:
2020
orcid: "https://orcid.org/0000-0002-1966-8460"
2121
date-released: 2022-11-24
2222
doi: <insert your DOI here>
23-
version: "0.2.0"
23+
version: "0.2.1"
2424
repository-code: "https://github.com/EcoExtreML/stemmus_scope_processing"
2525
keywords:
2626
- STEMMUS SCOPE Processing

PyStemmusScope/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99

1010
__author__ = "Sarah Alidoost"
1111
__email__ = "f.alidoost@esciencecenter.nl"
12-
__version__ = "0.2.0"
12+
__version__ = "0.2.1"

docs/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.2.1] - 2023-04-03
10+
<!-- markdown-link-check-disable-next-line -->
11+
This version is only compatible with [STEMMUS_SCOPE 1.2.0](https://github.com/EcoExtreML/STEMMUS_SCOPE/releases/tag/1.2.0).
12+
13+
### Added:
14+
- LAI data can now be read by the global data routines ([#69](https://github.com/EcoExtreML/STEMMUS_SCOPE_Processing/pull/69)).
15+
- Land cover data can now be read by global data routines ([#73](https://github.com/EcoExtreML/STEMMUS_SCOPE_Processing/pull/73))
16+
- Data validation checks (file existance, spatial & temporal bounds, ...) to global data read routines ([#71](https://github.com/EcoExtreML/STEMMUS_SCOPE_Processing/pull/71)).
17+
18+
### Changed:
19+
- The project has been moved to a `pyproject.toml` + `hatch` setup, with ruff as the linter and mypy as type checker ([#68](https://github.com/EcoExtreML/STEMMUS_SCOPE_Processing/pull/68)).
20+
21+
### Fixed:
22+
- The output netcdf file is again compatible to the model evaluation website ([#76](https://github.com/EcoExtreML/STEMMUS_SCOPE_Processing/pull/76)).
923

1024
## [0.2.0] - 2023-02-21
1125
<!-- markdown-link-check-disable-next-line -->

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ dependencies = [
5353
"hdf5storage",
5454
"netcdf4<=1.5.8",
5555
"numpy",
56-
"pandas",
56+
"pandas<2",
5757
"xarray",
5858
"rioxarray", # required for interacting with .tiff files
5959
"scipy", # required for xarray's interpolate

0 commit comments

Comments
 (0)