diff --git a/graphene_sqlalchemy/__init__.py b/graphene_sqlalchemy/__init__.py index 060bd13b..56d64be2 100644 --- a/graphene_sqlalchemy/__init__.py +++ b/graphene_sqlalchemy/__init__.py @@ -2,7 +2,7 @@ from .fields import SQLAlchemyConnectionField from .utils import get_query, get_session -__version__ = "3.0.0b1" +__version__ = "3.0.0" __all__ = [ "__version__", diff --git a/setup.py b/setup.py index da49f1d4..55b1516f 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requirements = [ # To keep things simple, we only support newer versions of Graphene - "graphene>=3.0.0b7", + "graphene>=3.0.0", "promise>=2.3", "SQLAlchemy>=1.1,<2", "aiodataloader>=0.2.0,<1.0",