From 5f354ef716f43e9aeee195623ca142950f204d7f Mon Sep 17 00:00:00 2001 From: bakdata-bots Date: Fri, 20 Dec 2024 13:16:46 +0000 Subject: [PATCH] =?UTF-8?q?Bump=20version=208.4.0=20=E2=86=92=209.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/docs/user/changelog.md | 49 +++++++++++++++++++++++++++++++++++++ kpops/const/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 51 insertions(+), 2 deletions(-) diff --git a/docs/docs/user/changelog.md b/docs/docs/user/changelog.md index e981b8236..c97595ae2 100644 --- a/docs/docs/user/changelog.md +++ b/docs/docs/user/changelog.md @@ -1,4 +1,53 @@ # Changelog +## [9.0.0](https://github.com/bakdata/kpops/releases/tag/9.0.0) - Release Date: [2024-12-20] + +### 🏗️ Breaking changes + +- Introduce KPOps operation and manifest resources for deployment - [#541](https://github.com/bakdata/kpops/pull/541) + +- Drop support for Python 3.10 - [#561](https://github.com/bakdata/kpops/pull/561) + +- KPOps V9 - [#558](https://github.com/bakdata/kpops/pull/558) + + +### 🚀 Features + +- Introduce KPOps operation and manifest resources for deployment - [#541](https://github.com/bakdata/kpops/pull/541) + +- Define Pydantic model to representing Kubernetes manifest - [#546](https://github.com/bakdata/kpops/pull/546) + +- Manifest toSection with Strimzi KafkaTopic - [#545](https://github.com/bakdata/kpops/pull/545) + +- Manifest Kubernetes resources for `destroy` command - [#552](https://github.com/bakdata/kpops/pull/552) + +- Manifest Kubernetes resources for `clean` command - [#559](https://github.com/bakdata/kpops/pull/559) + +- Manifest Kubernetes resources for `reset` command - [#563](https://github.com/bakdata/kpops/pull/563) + +- KPOps V9 - [#558](https://github.com/bakdata/kpops/pull/558) + + +### 🐛 Fixes + +- Hide `operation_mode` from KPOps config - [#571](https://github.com/bakdata/kpops/pull/571) + + +### 📝 Documentation + +- Add documentation for operation-mode in KPOps - [#565](https://github.com/bakdata/kpops/pull/565) + +- Add migration guide v8-v9 - [#562](https://github.com/bakdata/kpops/pull/562) + + +### 🌀 Miscellaneous + +- Add topic manifestation of ProducerApps for reset command - [#566](https://github.com/bakdata/kpops/pull/566) + + + + + + ## [8.4.0](https://github.com/bakdata/kpops/releases/tag/8.4.0) - Release Date: [2024-12-18] ### 🏭 Refactor diff --git a/kpops/const/__init__.py b/kpops/const/__init__.py index 43cc07877..3893b918c 100644 --- a/kpops/const/__init__.py +++ b/kpops/const/__init__.py @@ -1,3 +1,3 @@ -__version__ = "8.4.0" +__version__ = "9.0.0" KPOPS = "KPOps" KPOPS_MODULE = "kpops." diff --git a/pyproject.toml b/pyproject.toml index 16559f3a9..674c00be1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "kpops" -version = "8.4.0" +version = "9.0.0" description = "KPOps is a tool to deploy Kafka pipelines to Kubernetes" authors = ["bakdata "] license = "MIT"