diff --git a/README.rst b/README.rst index 01c553e..72b9ac1 100644 --- a/README.rst +++ b/README.rst @@ -511,6 +511,11 @@ You can use this shortcuts too: Change Log: ----------- +******* +v0.5.0: +******* +1. Upgrade to graphene v3 + ******* v0.4.9: ******* diff --git a/pyproject.toml b/pyproject.toml index 0a775a2..2edfe87 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,7 @@ exclude = ''' [tool.poetry] name = "graphene-django-extras" -version = "0.4.9" +version = "0.5.0" description = "This library add some extra funcionalities to graphene-django to facilitate the graphql use without Relay, allow paginations and filtering integration and add some extra directives" readme = "README.md" authors = [ @@ -33,12 +33,13 @@ classifiers = [ "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", "Programming Language :: Python :: Implementation :: PyPy", ] keywords=["api", "graphql", "protocol", "graphene", "django"] [tool.poetry.dependencies] -python = "^3.6 || ^3.7 || ^3.8" +python = "^3.6 || ^3.7 || ^3.8 || ^3.9" django-filter = "^2.2.0" djangorestframework = "^no" python-dateutil = "^2.8.0"