From 7fa797b9a5face2d892dc689f9ac2d6aa6f682fd Mon Sep 17 00:00:00 2001 From: bodja Date: Fri, 20 Dec 2024 10:33:42 +0100 Subject: [PATCH 1/2] fix: confluent-kafka schemaregistry dependency name. --- CHANGELOG.md | 3 +++ example/requirements.txt | 2 +- pyproject.toml | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4cc49e1..1714ed5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 0.5.12 (2024-12-20) +* Fix dependency name rename `schema-registry` to `schemaregistry`. + ## 0.5.11 (2024-12-20) * Upgrade `confluent-kafka` which adds support of the list of urls to the `SchemaRegistryClient`. diff --git a/example/requirements.txt b/example/requirements.txt index e28386d..f601dc1 100644 --- a/example/requirements.txt +++ b/example/requirements.txt @@ -1,5 +1,5 @@ bump-my-version==0.28.1 -confluent-kafka[avro, schema-registry]==2.6.2 +confluent-kafka[avro, schemaregistry]==2.6.2 django==5.1.3 ruff==0.7.4 setuptools==75.5.0 # without it PyCharm fails to index packages inside the Docker container diff --git a/pyproject.toml b/pyproject.toml index 5acd252..bef66c7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ name = "django-kafka" version = "0.5.11" dependencies = [ "django>=4.2,<6.0", - "confluent-kafka[avro, schema-registry]==2.6.2" + "confluent-kafka[avro, schemaregistry]==2.6.2" ] requires-python = ">=3.11" authors = [ From d065db0a4388b03a8d3d09368892ef8b1ebcf69a Mon Sep 17 00:00:00 2001 From: bodja Date: Fri, 20 Dec 2024 10:33:58 +0100 Subject: [PATCH 2/2] =?UTF-8?q?Bump=20version:=200.5.11=20=E2=86=92=200.5.?= =?UTF-8?q?12?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.toml | 2 +- django_kafka/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.toml b/.bumpversion.toml index 61f7d47..f5bb2b7 100644 --- a/.bumpversion.toml +++ b/.bumpversion.toml @@ -1,5 +1,5 @@ [tool.bumpversion] -current_version = "0.5.11" +current_version = "0.5.12" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)" serialize = ["{major}.{minor}.{patch}"] search = "{current_version}" diff --git a/django_kafka/__init__.py b/django_kafka/__init__.py index 5a0b524..836c12d 100644 --- a/django_kafka/__init__.py +++ b/django_kafka/__init__.py @@ -18,7 +18,7 @@ logger = logging.getLogger(__name__) -__version__ = "0.5.11" +__version__ = "0.5.12" __all__ = [ "autodiscover", diff --git a/pyproject.toml b/pyproject.toml index bef66c7..1f22c91 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "django-kafka" -version = "0.5.11" +version = "0.5.12" dependencies = [ "django>=4.2,<6.0", "confluent-kafka[avro, schemaregistry]==2.6.2"