Updated graphene to 1.0 🎉

This commit is contained in:
Syrus Akbary 2016-09-26 09:16:27 -07:00
parent 46cd025835
commit c920537380
6 changed files with 9 additions and 10 deletions

View File

@ -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

View File

@ -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
-----------------

View File

@ -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.
# "<project> v<release> 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.
#

View File

@ -14,7 +14,7 @@ Project setup
.. code:: bash
pip install "graphene>=1.0.dev"
pip install "graphene>=1.0"
Creating a basic Schema
-----------------------

View File

@ -10,7 +10,7 @@ except NameError:
__SETUP__ = False
VERSION = (1, 0, 0, 'alpha', 0)
VERSION = (1, 0, 0, 'final', 0)
__version__ = get_version(VERSION)

View File

@ -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',
],