From 20f534c8463cda428b6d408f36449d9eae01f056 Mon Sep 17 00:00:00 2001 From: bakdata-bots Date: Thu, 8 Feb 2024 12:42:50 +0000 Subject: [PATCH] =?UTF-8?q?Bump=20version=203.2.0=20=E2=86=92=203.2.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/docs/user/changelog.md | 20 ++++++++++++++++++++ kpops/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/docs/docs/user/changelog.md b/docs/docs/user/changelog.md index 23fe01fea..bb1c0823b 100644 --- a/docs/docs/user/changelog.md +++ b/docs/docs/user/changelog.md @@ -1,4 +1,24 @@ # Changelog +## [3.2.1](https://github.com/bakdata/kpops/releases/tag/3.2.1) - Release Date: [2024-02-08] + +### 🐛 Fixes + +- Fix order of pipeline steps for clean/reset - [#450](https://github.com/bakdata/kpops/pull/450) + +- Fix substitution - [#449](https://github.com/bakdata/kpops/pull/449) + +- Fix cleaner inheritance, parent model should be aliased during instantiation - [#452](https://github.com/bakdata/kpops/pull/452) + + +### 🏭 Refactor + +- Simplify execution graph logic - [#446](https://github.com/bakdata/kpops/pull/446) + + + + + + ## [3.2.0](https://github.com/bakdata/kpops/releases/tag/3.2.0) - Release Date: [2024-02-01] ### 🚀 Features diff --git a/kpops/__init__.py b/kpops/__init__.py index cf4e2e412..431f442a1 100644 --- a/kpops/__init__.py +++ b/kpops/__init__.py @@ -1,4 +1,4 @@ -__version__ = "3.2.0" +__version__ = "3.2.1" # export public API functions from kpops.cli.main import clean, deploy, destroy, generate, manifest, reset diff --git a/pyproject.toml b/pyproject.toml index 420230a38..7753b165b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "kpops" -version = "3.2.0" +version = "3.2.1" description = "KPOps is a tool to deploy Kafka pipelines to Kubernetes" authors = ["bakdata "] license = "MIT"