diff --git a/CHANGELOG.md b/CHANGELOG.md index 402a6fe7e..b964b7de2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,26 @@ # Changelog +## [2.0.11](https://github.com/bakdata/kpops/releases/tag/2.0.11) - Release Date: [2023-10-24] + +### 🐛 Fixes + +- Fix early exit upon Helm exit code 1 - [#376](https://github.com/bakdata/kpops/pull/376) + +- Fix docs setup page list indentation - [#377](https://github.com/bakdata/kpops/pull/377) + + +### 📝 Documentation + +- Migrate deprecated mkdocs-material-extensions - [#378](https://github.com/bakdata/kpops/pull/378) + +- Fix docs setup page list indentation - [#377](https://github.com/bakdata/kpops/pull/377) + +- Exclude resources from docs search - [#371](https://github.com/bakdata/kpops/pull/371) + + + + + + ## [2.0.10](https://github.com/bakdata/kpops/releases/tag/2.0.10) - Release Date: [2023-10-12] ### 🌀 Miscellaneous diff --git a/kpops/__init__.py b/kpops/__init__.py index 70fbe94a4..8fea6bcdf 100644 --- a/kpops/__init__.py +++ b/kpops/__init__.py @@ -1,4 +1,4 @@ -__version__ = "2.0.10" +__version__ = "2.0.11" # export public API functions from kpops.cli.main import clean, deploy, destroy, generate, reset diff --git a/pyproject.toml b/pyproject.toml index 6fc6839f9..e65abe824 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "kpops" -version = "2.0.10" +version = "2.0.11" description = "KPOps is a tool to deploy Kafka pipelines to Kubernetes" authors = ["bakdata "] license = "MIT"