diff --git a/.bumpversion.cfg b/.bumpversion.cfg index daec2c446..0c0b876b6 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 10.0.2 +current_version = 10.0.3 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?Pdev)(?P\d+)?)? serialize = {major}.{minor}.{patch}-{release}{timestamp} diff --git a/docs/docs/user/changelog.md b/docs/docs/user/changelog.md index 4a8e69bb0..1f241b3cc 100644 --- a/docs/docs/user/changelog.md +++ b/docs/docs/user/changelog.md @@ -2,11 +2,27 @@ All notable changes to this project will be documented in this file. +## [10.0.3](https://github.com/bakdata/kpops/tree/10.0.3) - 2025-03-06 +### What's changed + +* refactor(api): improve typing by @disrupted in [#612](https://github.com/bakdata/kpops/pull/612) + +* refactor(pydantic): create `SkipGenerate` type by @disrupted in [#611](https://github.com/bakdata/kpops/pull/611) + +* refactor(cli): use annotated for typer option by @disrupted in [#613](https://github.com/bakdata/kpops/pull/613) + +* fix(kafka-connector): destroy connector on reset by @disrupted in [#615](https://github.com/bakdata/kpops/pull/615) + + +**Full Changelog**: https://github.com/bakdata/kpops/compare/10.0.2...10.0.3 + ## [10.0.2](https://github.com/bakdata/kpops/tree/10.0.2) - 2025-03-04 ### What's changed * fix: hide _cleaner & _resetter from generate output by @disrupted in [#610](https://github.com/bakdata/kpops/pull/610) +* Bump version 10.0.1 → 10.0.2 by @bakdata-bot + **Full Changelog**: https://github.com/bakdata/kpops/compare/10.0.1...10.0.2 diff --git a/kpops/const/__init__.py b/kpops/const/__init__.py index 06313fd69..7101658b0 100644 --- a/kpops/const/__init__.py +++ b/kpops/const/__init__.py @@ -1,3 +1,3 @@ -__version__ = "10.0.2" +__version__ = "10.0.3" KPOPS = "KPOps" KPOPS_MODULE = "kpops." diff --git a/pyproject.toml b/pyproject.toml index 45cd8fe71..c7aee0527 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "kpops" -version = "10.0.2" +version = "10.0.3" description = "KPOps is a tool to deploy Kafka pipelines to Kubernetes" authors = [ { name = "bakdata", email = "opensource@bakdata.com" }, diff --git a/uv.lock b/uv.lock index 37abed47c..c340d2c2f 100644 --- a/uv.lock +++ b/uv.lock @@ -395,7 +395,7 @@ wheels = [ [[package]] name = "kpops" -version = "10.0.2" +version = "10.0.3" source = { editable = "." } dependencies = [ { name = "anyio" },