diff --git a/CHANGELOG.md b/CHANGELOG.md index c16a9033b..402a6fe7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,21 @@ # Changelog +## [2.0.10](https://github.com/bakdata/kpops/releases/tag/2.0.10) - Release Date: [2023-10-12] + +### 🌀 Miscellaneous + +- Fix environment variables documentation generation - [#362](https://github.com/bakdata/kpops/pull/362) + +- Introduce ruff - [#363](https://github.com/bakdata/kpops/pull/363) + +- Print details on connector name mismatch error - [#369](https://github.com/bakdata/kpops/pull/369) + +- Enable transparent OS environment lookups from internal environment - [#368](https://github.com/bakdata/kpops/pull/368) + + + + + + ## [2.0.9](https://github.com/bakdata/kpops/releases/tag/2.0.9) - Release Date: [2023-09-19] ### 🐛 Fixes diff --git a/kpops/__init__.py b/kpops/__init__.py index 20b037690..70fbe94a4 100644 --- a/kpops/__init__.py +++ b/kpops/__init__.py @@ -1,4 +1,4 @@ -__version__ = "2.0.9" +__version__ = "2.0.10" # export public API functions from kpops.cli.main import clean, deploy, destroy, generate, reset diff --git a/pyproject.toml b/pyproject.toml index 7e0427eda..64b573128 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "kpops" -version = "2.0.9" +version = "2.0.10" description = "KPOps is a tool to deploy Kafka pipelines to Kubernetes" authors = ["bakdata "] license = "MIT"