Skip to content

Commit c920537

Browse files
committed
Updated graphene to 1.0 🎉
1 parent 46cd025 commit c920537

File tree

6 files changed

+9
-10
lines changed

6 files changed

+9
-10
lines changed

‎README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
You are in the `next` unreleased version of Graphene (`1.0.dev`).
2-
Please read [UPGRADE-v1.0.md](/UPGRADE-v1.0.md) to learn how to upgrade.
1+
This are the docs for Graphene `1.0`. Please read [UPGRADE-v1.0.md](/UPGRADE-v1.0.md) to learn how to upgrade.
32

43
---
54

@@ -32,7 +31,7 @@ Graphene has multiple integrations with different frameworks:
3231
For instaling graphene, just run this command in your shell
3332

3433
```bash
35-
pip install "graphene>=1.0.dev"
34+
pip install "graphene>=1.0"
3635
```
3736

3837
## 1.0 Upgrade Guide

‎README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
You are in the ``next`` unreleased version of Graphene (``1.0.dev``).
1+
This are the docs for Graphene ``1.0``. Please read
22
Please read `UPGRADE-v1.0.md`_ to learn how to upgrade.
33

44
--------------
@@ -41,7 +41,7 @@ For instaling graphene, just run this command in your shell
4141

4242
.. code:: bash
4343
44-
pip install "graphene>=1.0.dev"
44+
pip install "graphene>=1.0"
4545
4646
1.0 Upgrade Guide
4747
-----------------

‎docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
# The short X.Y version.
7474
version = u'1.0'
7575
# The full version, including alpha/beta/rc tags.
76-
release = u'1.0.dev'
76+
release = u'1.0'
7777

7878
# The language for content autogenerated by Sphinx. Refer to documentation
7979
# for a list of supported languages.
@@ -154,7 +154,7 @@
154154
# The name for this set of Sphinx documents.
155155
# "<project> v<release> documentation" by default.
156156
#
157-
# html_title = u'Graphene v1.0.dev'
157+
# html_title = u'Graphene v1.0'
158158

159159
# A shorter title for the navigation bar. Default is the same as html_title.
160160
#

‎docs/quickstart.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Project setup
1414

1515
.. code:: bash
1616
17-
pip install "graphene>=1.0.dev"
17+
pip install "graphene>=1.0"
1818
1919
Creating a basic Schema
2020
-----------------------

‎graphene/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
__SETUP__ = False
1111

1212

13-
VERSION = (1, 0, 0, 'alpha', 0)
13+
VERSION = (1, 0, 0, 'final', 0)
1414

1515
__version__ = get_version(VERSION)
1616

‎setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def run_tests(self):
7070

7171
install_requires=[
7272
'six>=1.10.0',
73-
'graphql-core>=1.0.dev',
73+
'graphql-core>=1.0',
7474
'graphql-relay>=0.4.4',
7575
'promise',
7676
],

0 commit comments

Comments
 (0)