diff --git a/README.md b/README.md index 7b0ab346..f4093243 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,4 @@ -You are in the `next` unreleased version of Graphene (`1.0.dev`). -Please read [UPGRADE-v1.0.md](/UPGRADE-v1.0.md) to learn how to upgrade. +This are the docs for Graphene `1.0`. Please read [UPGRADE-v1.0.md](/UPGRADE-v1.0.md) to learn how to upgrade. --- @@ -32,7 +31,7 @@ Graphene has multiple integrations with different frameworks: For instaling graphene, just run this command in your shell ```bash -pip install "graphene>=1.0.dev" +pip install "graphene>=1.0" ``` ## 1.0 Upgrade Guide diff --git a/README.rst b/README.rst index 1d5f34f4..7b20ad02 100644 --- a/README.rst +++ b/README.rst @@ -1,4 +1,4 @@ -You are in the ``next`` unreleased version of Graphene (``1.0.dev``). +This are the docs for Graphene ``1.0``. Please read Please read `UPGRADE-v1.0.md`_ to learn how to upgrade. -------------- @@ -41,7 +41,7 @@ For instaling graphene, just run this command in your shell .. code:: bash - pip install "graphene>=1.0.dev" + pip install "graphene>=1.0" 1.0 Upgrade Guide ----------------- diff --git a/docs/conf.py b/docs/conf.py index 5db1ec43..9d902f9a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -73,7 +73,7 @@ author = u'Syrus Akbary' # The short X.Y version. version = u'1.0' # The full version, including alpha/beta/rc tags. -release = u'1.0.dev' +release = u'1.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -154,7 +154,7 @@ html_theme_path = [sphinx_graphene_theme.get_html_theme_path()] # The name for this set of Sphinx documents. # " v documentation" by default. # -# html_title = u'Graphene v1.0.dev' +# html_title = u'Graphene v1.0' # A shorter title for the navigation bar. Default is the same as html_title. # diff --git a/docs/quickstart.rst b/docs/quickstart.rst index 5dfae32f..5a93ff30 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -14,7 +14,7 @@ Project setup .. code:: bash - pip install "graphene>=1.0.dev" + pip install "graphene>=1.0" Creating a basic Schema ----------------------- diff --git a/graphene/__init__.py b/graphene/__init__.py index 5afc4f97..1ce095dd 100644 --- a/graphene/__init__.py +++ b/graphene/__init__.py @@ -10,7 +10,7 @@ except NameError: __SETUP__ = False -VERSION = (1, 0, 0, 'alpha', 0) +VERSION = (1, 0, 0, 'final', 0) __version__ = get_version(VERSION) diff --git a/setup.py b/setup.py index dfd82742..37f5fa50 100644 --- a/setup.py +++ b/setup.py @@ -70,7 +70,7 @@ setup( install_requires=[ 'six>=1.10.0', - 'graphql-core>=1.0.dev', + 'graphql-core>=1.0', 'graphql-relay>=0.4.4', 'promise', ],