Skip to content

Commit

Permalink
Merge pull request #47 from RegioHelden/fix-deps-schemaregistry
Browse files Browse the repository at this point in the history
Fix deps schemaregistry
  • Loading branch information
bodja authored Dec 20, 2024
2 parents 69232ad + d065db0 commit deba9f7
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.bumpversion]
current_version = "0.5.11"
current_version = "0.5.12"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`.

Expand Down
2 changes: 1 addition & 1 deletion django_kafka/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

logger = logging.getLogger(__name__)

__version__ = "0.5.11"
__version__ = "0.5.12"

__all__ = [
"autodiscover",
Expand Down
2 changes: 1 addition & 1 deletion example/requirements.txt
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ 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, schema-registry]==2.6.2"
"confluent-kafka[avro, schemaregistry]==2.6.2"
]
requires-python = ">=3.11"
authors = [
Expand Down

0 comments on commit deba9f7

Please sign in to comment.