From d8fca312b74c0f2a64edd250741ca5f4c2fae2ec Mon Sep 17 00:00:00 2001 From: Stefaan Lippens Date: Wed, 11 Oct 2023 15:15:47 +0200 Subject: [PATCH] Issue #195 bump version to 0.70.0a1 and add CHANGELOG --- CHANGELOG.md | 37 +++++++++++++++++++++++++++++++++++++ openeo_driver/_version.py | 2 +- 2 files changed, 38 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..7e99c09d --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,37 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +This project does not have a real release cycle (yet). +Upstream projects usually depend on development snapshots of this project. +Still, to have some kind of indicator of small versus big change, +we try to bump the version number (in `openeo_driver/_version.py`) +roughly according to [Semantic Versioning](https://semver.org/). + +When adding a feature/bugfix without bumping the version number: +just describe it under the "In progress" section. +When bumping the version number in `openeo_driver/_version.py` +(possibly accompanying a feature/bugfix): +"close" the "In Progress" section by changing its title to the new version number +(and describe accompanying changes, if any, under it too) +and start a new "In Progress" section above it. + + +## In progress + + + +## 0.70.0 + +- Initial support for openeo-processes v2.0, when requesting version 1.2 of the openEO API ([#195](https://github.com/Open-EO/openeo-python-driver/issues/195)) +- Drop support for 0.4 version of openeo-processes ([#47](https://github.com/Open-EO/openeo-python-driver/issues/47)) + + +## 0.69.1 + +- Add backoff to ensure EJR deletion ([#163](https://github.com/Open-EO/openeo-python-driver/issues/163)) + + +## 0.69.0 + +- Support job deletion in EJR ([#163](https://github.com/Open-EO/openeo-python-driver/issues/163)) diff --git a/openeo_driver/_version.py b/openeo_driver/_version.py index 9310925c..b320a08c 100644 --- a/openeo_driver/_version.py +++ b/openeo_driver/_version.py @@ -1 +1 @@ -__version__ = "0.69.2a1" +__version__ = "0.70.0a1"