diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 351bed36..e05f795d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.1 +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 @@ -15,7 +15,3 @@ replace = version = {new_version} [bumpversion:file:CITATION.cff] search = version: "{current_version}" replace = version: "{new_version}" - -[bumpversion:file:docs/conf.py] -search = version = "{current_version}" -replace = version = "{new_version}" diff --git a/CITATION.cff b/CITATION.cff index 06b6612c..b9487fc7 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -20,7 +20,7 @@ authors: orcid: "https://orcid.org/0000-0002-1966-8460" date-released: 2022-11-24 doi: -version: "0.1.1" +version: "0.2.0" repository-code: "https://github.com/EcoExtreML/stemmus_scope_processing" keywords: - STEMMUS SCOPE Processing diff --git a/PyStemmusScope/__init__.py b/PyStemmusScope/__init__.py index 58970fae..afe17ccb 100644 --- a/PyStemmusScope/__init__.py +++ b/PyStemmusScope/__init__.py @@ -7,4 +7,4 @@ __author__ = "Sarah Alidoost" __email__ = "f.alidoost@esciencecenter.nl" -__version__ = "0.1.1" +__version__ = "0.2.0" diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 137afb14..17e71415 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -6,7 +6,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [0.0.1] - 1900-12-31 + +## [0.2.0] - 2023-02-21 + +This version is only compatible with [STEMMUS_SCOPE 1.2.0](https://github.com/EcoExtreML/STEMMUS_SCOPE/releases/tag/1.2.0). + +### Added: + - A time range can now be specified for which the model should be run. + - The model can now be run on any site globally, by providing a latitude and longitude, assuming that the required data is available for those sites. + - Note: land cover and LAI are not dynamically retrieved yet, but use a dummy value. + +### Changed: + - Documentation now uses mkdocs instead of sphinx. + +## [0.1.1] - 2022-11-24 +### Changed: +- Supported Python versions are now 3.8, 3.9 and 3.10. + +## [0.1.0] - 2022-11-24 +The first release of PyStemmusScope. Compatible with STEMMUS_SCOPE 1.1.11. ### Added diff --git a/setup.cfg b/setup.cfg index 90f7f118..02000376 100644 --- a/setup.cfg +++ b/setup.cfg @@ -25,7 +25,7 @@ name = PyStemmusScope project_urls = Bug Tracker = https://github.com/EcoExtreML/stemmus_scope_processing/issues url = https://github.com/EcoExtreML/stemmus_scope_processing -version = 0.1.1 +version = 0.2.0 [options] python_requires = >=3.8,<3.11