Skip to content

Commit 27f19e5

Browse files
committed
release v3 stable
1 parent 0a54094 commit 27f19e5

File tree

3 files changed

+4
-10
lines changed

3 files changed

+4
-10
lines changed

README.md

+1-7
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,6 @@
44

55
**We are looking for contributors**! Please check the [ROADMAP](https://github.com/graphql-python/graphene/blob/master/ROADMAP.md) to see how you can help ❤️
66

7-
---
8-
9-
**The below readme is the documentation for the `dev` (prerelease) version of Graphene. To view the documentation for the latest stable Graphene version go to the [v2 docs](https://docs.graphene-python.org/en/stable/)**
10-
11-
---
12-
137
## Introduction
148

159
[Graphene](http://graphene-python.org) is an opinionated Python library for building GraphQL schemas/types fast and easily.
@@ -37,7 +31,7 @@ Also, Graphene is fully compatible with the GraphQL spec, working seamlessly wit
3731
For instaling graphene, just run this command in your shell
3832

3933
```bash
40-
pip install "graphene>=2.0"
34+
pip install "graphene>=3.0"
4135
```
4236

4337
## Examples

docs/quickstart.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,14 @@ Requirements
6060
~~~~~~~~~~~~
6161

6262
- Python (2.7, 3.4, 3.5, 3.6, pypy)
63-
- Graphene (2.0)
63+
- Graphene (3.0)
6464

6565
Project setup
6666
~~~~~~~~~~~~~
6767

6868
.. code:: bash
6969
70-
pip install "graphene>=2.0"
70+
pip install "graphene>=3.0"
7171
7272
Creating a basic Schema
7373
~~~~~~~~~~~~~~~~~~~~~~~

graphene/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
from .utils.module_loading import lazy_import
4242
from .utils.resolve_only_args import resolve_only_args
4343

44-
VERSION = (3, 0, 0, "beta", 8)
44+
VERSION = (3, 0, 0, "final", 0)
4545

4646

4747
__version__ = get_version(VERSION)

0 commit comments

Comments
 (0)