diff --git a/CHANGELOG.md b/CHANGELOG.md index 8243eda0e..301373e08 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,21 +1,21 @@ # Changelog -## Current Main +## Release 1.0.0 This release includes a well specified [API](https://oqt.ohsome.org/api/docs) and two core indicators available through the [ohsome dashboard](https://dashboard.ohsome.org/#backend=oqtApi). ### Breaking - api: remove `dataset`, `featureId` and `fidField` parameter ([#634]) -- api: computing mapping-saturation indicator for given data is now a separate endpoint ([#642]) +- api: computing mapping-saturation indicator for given data is now a separate (hidden) endpoint ([#642]) - cli: remove CLI ([#634]) - api: remove `include_svg`, `include_html` `include_data` and `flatten` parameter ([#644]) - api: only accept FeatureCollection as `bpolys` parameter ([#650]) ### New Features -- feat(api): add `includeFigure` parameter to `/indicators` endpoint ([#659]) -- feat(api): add indicator response models ([#670]) +- api: add `includeFigure` parameter to `/indicators` endpoint ([#659]) +- api: add indicator response models ([#670]) ### Other Changes diff --git a/ohsome_quality_analyst/__init__.py b/ohsome_quality_analyst/__init__.py index da38fb678..245b6c2a9 100644 --- a/ohsome_quality_analyst/__init__.py +++ b/ohsome_quality_analyst/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.15.0" +__version__ = "1.0.0" __title__ = "ohsome quality analyst" __description__ = "Data quality estimations for OpenStreetMap" __author__ = "ohsome team" diff --git a/pyproject.toml b/pyproject.toml index 6678d731c..1d194a370 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ohsome_quality_analyst" -version = "0.15.0" +version = "1.0.0" description = "Intrinsic and extrinsic data quality metrics for OpenStreetMap data." authors = ["ohsome team "] homepage = "https://oqt.ohsome.org"