From c89ff3929307084014c391e3347f22b6983f65ff Mon Sep 17 00:00:00 2001 From: bakdata-bots Date: Thu, 25 Apr 2024 12:04:27 +0000 Subject: [PATCH] =?UTF-8?q?Bump=20version=204.1.2=20=E2=86=92=204.2.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/docs/user/changelog.md | 22 ++++++++++++++++++++++ kpops/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 24 insertions(+), 2 deletions(-) diff --git a/docs/docs/user/changelog.md b/docs/docs/user/changelog.md index cf1ef6284..09d6f06ea 100644 --- a/docs/docs/user/changelog.md +++ b/docs/docs/user/changelog.md @@ -1,4 +1,26 @@ # Changelog +## [4.2.0](https://github.com/bakdata/kpops/releases/tag/4.2.0) - Release Date: [2024-04-25] + +### 🏭 Refactor + +- Improve type annotations for parallel pipeline jobs - [#476](https://github.com/bakdata/kpops/pull/476) + + +### 🌀 Miscellaneous + +- Update Ruff - [#475](https://github.com/bakdata/kpops/pull/475) + +- Set Pyright to warn on unknown types - [#480](https://github.com/bakdata/kpops/pull/480) + +- Quiet faker debug logs in tests - [#483](https://github.com/bakdata/kpops/pull/483) + +- Add pyright matcher - [#481](https://github.com/bakdata/kpops/pull/481) + + + + + + ## [4.1.2](https://github.com/bakdata/kpops/releases/tag/4.1.2) - Release Date: [2024-03-11] ### 📝 Documentation diff --git a/kpops/__init__.py b/kpops/__init__.py index ab9b209f2..1c74fc3b5 100644 --- a/kpops/__init__.py +++ b/kpops/__init__.py @@ -1,4 +1,4 @@ -__version__ = "4.1.2" +__version__ = "4.2.0" # export public API functions from kpops.cli.main import clean, deploy, destroy, generate, init, manifest, reset diff --git a/pyproject.toml b/pyproject.toml index 2116ae3e1..599bd3f3a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "kpops" -version = "4.1.2" +version = "4.2.0" description = "KPOps is a tool to deploy Kafka pipelines to Kubernetes" authors = ["bakdata "] license = "MIT"