diff --git a/docs/docs/user/changelog.md b/docs/docs/user/changelog.md index c9fc3cd98..2ae17d10c 100644 --- a/docs/docs/user/changelog.md +++ b/docs/docs/user/changelog.md @@ -1,4 +1,15 @@ # Changelog +## [6.0.1](https://github.com/bakdata/kpops/releases/tag/6.0.1) - Release Date: [2024-06-12] + +### 🐛 Fixes + +- Fix connector resetter offset topic - [#497](https://github.com/bakdata/kpops/pull/497) + + + + + + ## [6.0.0](https://github.com/bakdata/kpops/releases/tag/6.0.0) - Release Date: [2024-06-06] ### 🏗️ Breaking changes diff --git a/kpops/__init__.py b/kpops/__init__.py index a3eba814a..b0b3c6651 100644 --- a/kpops/__init__.py +++ b/kpops/__init__.py @@ -1,4 +1,4 @@ -__version__ = "6.0.0" +__version__ = "6.0.1" # export public API functions from kpops.api import clean, deploy, destroy, generate, init, manifest, reset diff --git a/pyproject.toml b/pyproject.toml index a717fe63a..49ee0b459 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "kpops" -version = "6.0.0" +version = "6.0.1" description = "KPOps is a tool to deploy Kafka pipelines to Kubernetes" authors = ["bakdata "] license = "MIT"