From f4fe81e418bdd242052e1a6f84a9009b6e070dc8 Mon Sep 17 00:00:00 2001 From: bakdata-bots Date: Fri, 19 Jan 2024 10:38:21 +0000 Subject: [PATCH] =?UTF-8?q?Bump=20version=203.0.0=20=E2=86=92=203.0.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/docs/user/changelog.md | 29 +++++++++++++++++++++++++++++ kpops/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 31 insertions(+), 2 deletions(-) diff --git a/docs/docs/user/changelog.md b/docs/docs/user/changelog.md index 3a9fd3f05..95ed763b5 100644 --- a/docs/docs/user/changelog.md +++ b/docs/docs/user/changelog.md @@ -1,4 +1,33 @@ # Changelog +## [3.0.1](https://github.com/bakdata/kpops/releases/tag/3.0.1) - Release Date: [2024-01-19] + +### 🐛 Fixes + +- Fix broken doc link - [#427](https://github.com/bakdata/kpops/pull/427) + +- Add warning log if SR handler is disabled but URL is set - [#428](https://github.com/bakdata/kpops/pull/428) + + +### 📝 Documentation + +- Update docs of word-count example for v3 & new folder structure - [#423](https://github.com/bakdata/kpops/pull/423) + +- Move ATM fraud to examples repo - [#425](https://github.com/bakdata/kpops/pull/425) + +- Fix broken doc link - [#427](https://github.com/bakdata/kpops/pull/427) + + +### 🌀 Miscellaneous + +- Update pydantic dependency - [#422](https://github.com/bakdata/kpops/pull/422) + +- Add git submodule instructions to the contributing.md - [#429](https://github.com/bakdata/kpops/pull/429) + + + + + + ## [3.0.0](https://github.com/bakdata/kpops/releases/tag/3.0.0) - Release Date: [2024-01-17] ### 🏗️ Breaking changes diff --git a/kpops/__init__.py b/kpops/__init__.py index 285006896..087935d0d 100644 --- a/kpops/__init__.py +++ b/kpops/__init__.py @@ -1,4 +1,4 @@ -__version__ = "3.0.0" +__version__ = "3.0.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 fff499d59..d15044a47 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "kpops" -version = "3.0.0" +version = "3.0.1" description = "KPOps is a tool to deploy Kafka pipelines to Kubernetes" authors = ["bakdata "] license = "MIT"