Skip to content

Commit

Permalink
Release 0.2.1 (#77)
Browse files Browse the repository at this point in the history
* Update bumpversion config

* Bump version to 0.2.1

* Update the changelog

* Add land cover to changelog

* Pin pandas to <= 2
  • Loading branch information
BSchilperoort authored Apr 4, 2023
1 parent a5be424 commit 5b97aa0
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 11 deletions.
9 changes: 1 addition & 8 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,17 +1,10 @@
[bumpversion]
current_version = 0.2.0

[comment]
comment = The contents of this file cannot be merged with that of setup.cfg until https://github.com/c4urself/bump2version/issues/185 is resolved
current_version = 0.2.1

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

[bumpversion:file:setup.cfg]
search = version = {current_version}
replace = version = {new_version}

[bumpversion:file:CITATION.cff]
search = version: "{current_version}"
replace = version: "{new_version}"
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ authors:
orcid: "https://orcid.org/0000-0002-1966-8460"
date-released: 2022-11-24
doi: <insert your DOI here>
version: "0.2.0"
version: "0.2.1"
repository-code: "https://github.com/EcoExtreML/stemmus_scope_processing"
keywords:
- STEMMUS SCOPE Processing
Expand Down
2 changes: 1 addition & 1 deletion PyStemmusScope/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@

__author__ = "Sarah Alidoost"
__email__ = "[email protected]"
__version__ = "0.2.0"
__version__ = "0.2.1"
14 changes: 14 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.1] - 2023-04-03
<!-- markdown-link-check-disable-next-line -->
This version is only compatible with [STEMMUS_SCOPE 1.2.0](https://github.com/EcoExtreML/STEMMUS_SCOPE/releases/tag/1.2.0).

### Added:
- LAI data can now be read by the global data routines ([#69](https://github.com/EcoExtreML/STEMMUS_SCOPE_Processing/pull/69)).
- Land cover data can now be read by global data routines ([#73](https://github.com/EcoExtreML/STEMMUS_SCOPE_Processing/pull/73))
- Data validation checks (file existance, spatial & temporal bounds, ...) to global data read routines ([#71](https://github.com/EcoExtreML/STEMMUS_SCOPE_Processing/pull/71)).

### Changed:
- 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)).

### Fixed:
- The output netcdf file is again compatible to the model evaluation website ([#76](https://github.com/EcoExtreML/STEMMUS_SCOPE_Processing/pull/76)).

## [0.2.0] - 2023-02-21
<!-- markdown-link-check-disable-next-line -->
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ dependencies = [
"hdf5storage",
"netcdf4<=1.5.8",
"numpy",
"pandas",
"pandas<2",
"xarray",
"rioxarray", # required for interacting with .tiff files
"scipy", # required for xarray's interpolate
Expand Down

0 comments on commit 5b97aa0

Please sign in to comment.