diff --git a/CHANGELOG.md b/CHANGELOG.md index ab6fd3a..f344835 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is roughly based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## [0.18.1] + +- Include gunicorn configs in wheel (related to [#117](https://github.com/Open-EO/openeo-aggregator/issues/117)) + ## [0.18.0] - Start porting `AggregatorConfig` fields to `AggregatorBackendConfig` ([#112](https://github.com/Open-EO/openeo-aggregator/issues/112)) diff --git a/setup.py b/setup.py index 26bd888..460e1a5 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,14 @@ package_dir={"": "src"}, include_package_data=True, data_files=[ - ("openeo-aggregator", ["CHANGELOG.md"]), + ( + "openeo-aggregator-data", + [ + "CHANGELOG.md", + "conf/gunicorn.dev.py", + "conf/gunicorn.prod.py", + ], + ), ], python_requires=">=3.8", install_requires=[ diff --git a/src/openeo_aggregator/about.py b/src/openeo_aggregator/about.py index 36a73a7..9f7132a 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.18.0a1" +__version__ = "0.18.1a1" def log_version_info(logger: Optional[logging.Logger] = None):