diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a8bfcf..b4daef3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [2.6.0](https://github.com/blb-ventures/strawberry-django-plus/compare/v2.5.0...v2.6.0) (2023-06-01) + + +### Features + +* add description to enums from django choices ([#217](https://github.com/blb-ventures/strawberry-django-plus/issues/217)) ([4d640e7](https://github.com/blb-ventures/strawberry-django-plus/commit/4d640e7d5cb05ed9bac79743e291121d2a9e56fa)) +* use a type's get_queryset for Relay connections if it defines one ([#215](https://github.com/blb-ventures/strawberry-django-plus/issues/215)) ([bb3af76](https://github.com/blb-ventures/strawberry-django-plus/commit/bb3af7675a175fc3b85eedef54464198d38613da)) + ## [2.5.0](https://github.com/blb-ventures/strawberry-django-plus/compare/v2.4.2...v2.5.0) (2023-05-29) diff --git a/pyproject.toml b/pyproject.toml index 877edc6..0b1f192 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "strawberry-django-plus" -version = "2.5.0" +version = "2.6.0" description = "Enhanced Strawberry GraphQL integration with Django" authors = ["Thiago Bellini Ribeiro "] license = "MIT" diff --git a/strawberry_django_plus/__init__.py b/strawberry_django_plus/__init__.py index 469676e..c646846 100644 --- a/strawberry_django_plus/__init__.py +++ b/strawberry_django_plus/__init__.py @@ -16,7 +16,7 @@ _original_enum_init = EnumDefinition.__init__ _original_from_generic = NameConverter.from_generic -__version__ = "2.5.0" # x-release-please-version +__version__ = "2.6.0" # x-release-please-version def _get_doc(obj):