diff --git a/CHANGELOG.md b/CHANGELOG.md index ae3e315..bd8a45b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ The format is roughly based on [Keep a Changelog](https://keepachangelog.com/en/ +## 0.35.1 + +- Add `aggregator.dummy.py` to wheel ([#117](https://github.com/Open-EO/openeo-aggregator/issues/117)) + ## 0.35.0 - Start with `openeo-aggregator` docs, hosted with GitHub Pages at https://open-eo.github.io/openeo-aggregator/ ([#142](https://github.com/Open-EO/openeo-aggregator/issues/142)) diff --git a/setup.py b/setup.py index dac8b6d..966bb4d 100644 --- a/setup.py +++ b/setup.py @@ -28,6 +28,7 @@ "CHANGELOG.md", "conf/gunicorn.dev.py", "conf/gunicorn.prod.py", + "conf/aggregator.dummy.py", ], ), ], diff --git a/src/openeo_aggregator/about.py b/src/openeo_aggregator/about.py index 39058d7..521aacd 100644 --- a/src/openeo_aggregator/about.py +++ b/src/openeo_aggregator/about.py @@ -2,7 +2,7 @@ import sys from typing import Optional -__version__ = "0.35.0a1" +__version__ = "0.35.1a1" def log_version_info(logger: Optional[logging.Logger] = None):