From 85d4d048946753dabb2e5aa17052aafcb6d9b7e2 Mon Sep 17 00:00:00 2001 From: bakdata-bots Date: Wed, 2 Aug 2023 07:58:43 +0000 Subject: [PATCH] =?UTF-8?q?Bump=20version=201.3.2=20=E2=86=92=201.4.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 29 +++++++++++++++++++++++++++++ kpops/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 31 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 05a5a65c1..8088bcb4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,33 @@ # Changelog +## [1.4.0](https://github.com/bakdata/kpops/releases/tag/1.4.0) - Release Date: [2023-08-02] + +### 🐛 Fixes + +- Validate unique step names - [#292](https://github.com/bakdata/kpops/pull/292) + + +### 🏭 Refactor + +- Order PipelineComponent fields - [#290](https://github.com/bakdata/kpops/pull/290) + +- Migrate requests to httpx - [#302](https://github.com/bakdata/kpops/pull/302) + +- Refactor CLI using dtyper - [#306](https://github.com/bakdata/kpops/pull/306) + + +### 🌀 Miscellaneous + +- Update Black - [#294](https://github.com/bakdata/kpops/pull/294) + +- Fix vulnerability in mkdocs-material - [#295](https://github.com/bakdata/kpops/pull/295) + +- Move breaking changes section upper in the change log config - [#287](https://github.com/bakdata/kpops/pull/287) + + + + + + ## [1.3.2](https://github.com/bakdata/kpops/releases/tag/1.3.2) - Release Date: [2023-07-13] ### 🐛 Fixes diff --git a/kpops/__init__.py b/kpops/__init__.py index 7c7b449dc..735d1e5bb 100644 --- a/kpops/__init__.py +++ b/kpops/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.3.2" +__version__ = "1.4.0" # export public API functions from kpops.cli.main import clean, deploy, destroy, generate, reset diff --git a/pyproject.toml b/pyproject.toml index 0fc825a24..534081f1e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "kpops" -version = "1.3.2" +version = "1.4.0" description = "KPOps is a tool to deploy Kafka pipelines to Kubernetes" authors = ["bakdata "] license = "MIT"