diff --git a/CHANGELOG.md b/CHANGELOG.md index 50af330..cd17ef1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [2.6.5](https://github.com/blb-ventures/strawberry-django-plus/compare/v2.6.4...v2.6.5) (2023-06-23) + + +### Code Refactoring + +* support for strawberry 0.187.5+ ([d1cec36](https://github.com/blb-ventures/strawberry-django-plus/commit/d1cec365cc8dfd357f96dc4a0f69cc4d0d0c863d)) + ## [2.6.4](https://github.com/blb-ventures/strawberry-django-plus/compare/v2.6.3...v2.6.4) (2023-06-14) diff --git a/pyproject.toml b/pyproject.toml index 76ee94d..46b4c65 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "strawberry-django-plus" -version = "2.6.4" +version = "2.6.5" 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 7c713f4..714334d 100644 --- a/strawberry_django_plus/__init__.py +++ b/strawberry_django_plus/__init__.py @@ -17,7 +17,7 @@ _original_enum_init = EnumDefinition.__init__ _original_from_generic = NameConverter.from_generic -__version__ = "2.6.4" # x-release-please-version +__version__ = "2.6.5" # x-release-please-version def _get_doc(obj):