Skip to content

Commit a8ec2a9

Browse files
mvanlondenCito
authored andcommittedJul 13, 2019
Set graphql-core-next as v3 of graphql-core (#40)
Add PyPI packing and deploy and set GraphQL-core-next as v3 of GraphQL-core. Update version number everywhere and update PyPi deploy credentials. Add alpha prerelease qualifier.
1 parent afa494e commit a8ec2a9

File tree

7 files changed

+17
-8
lines changed

7 files changed

+17
-8
lines changed
 

‎.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.1.0
2+
current_version = 3.0.0a0
33
commit = False
44
tag = False
55

‎.travis.yml

+9
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,12 @@ script:
2727

2828
after_success:
2929
- codecov
30+
31+
deploy:
32+
provider: pypi
33+
user: mvanlonden
34+
on:
35+
tags: true
36+
password:
37+
secure: xWXF8kHWqM2/KIxM3rSRM2zKU0ZSRzexxos2BrJK/favSNXthsAfbNrkvWgJRpleyo/WrP5A0yRoGZRFzDkg7JX4oqUNOMkVG591V6eLNdXLwvrpxTujzEY2dKcwWzJ+EreOesIZFsK2TpkAyE0ntzBDbyhHPJl5uLCVD0d7F//psIUOM2EHwR49efV+eDBFgSdEPZ+P/e8OUlPV+U9lxoqvc1qFz5o2aV5tOEadZy1jzKEKslu2U3/F8vdOHrDAJGND3d3xpjRndZuaPPMUp9Fzbf7KdHiKGhbtjIPbR6E0jGkI9y2hesdjOgktLjRmUxES+KfthwDpP0uEXdS4FhLA+eXb5j2oKrC2uI/5s3efq8L55v4lYVpqiKFhYPXkqYbRpITZnHsCDBqgDx9BcrziJ15Y2NEZl1vKvmT6rKSkzhxjXO0slPV/fC4Po9dPvujvAzM2QEfl6aCv0wkP66SaSwWyK3K3B2a0FT2jURQ9qHCQ9hMGjwwA3xQh8UyuMXonzOjmtt8R0F9NrZnvLetrKAJjR1oGhTgEwqFhmq2uK/Q8QILuUMBKGHkFv2Ve1p3CLEJcX+KHrpKtGJvnWYVIISTfDivdKNIjoN+hM90vH1tC1DrvFY/PXGMDO+MHwYgyOezcrNdj+sav02cLm5XG+7449S5vgIa4DpAE+24=
38+
distributions: "sdist bdist_wheel"

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ a query language for APIs created by Facebook.
1212
[![Python 3 Status](https://pyup.io/repos/github/graphql-python/graphql-core-next/python-3-shield.svg)](https://pyup.io/repos/github/graphql-python/graphql-core-next/)
1313
[![Code Style](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)
1414

15-
The current version 1.1.0 of GraphQL-core-next is up-to-date with GraphQL.js version
15+
The current version 3.0.0a0 of GraphQL-core-next is up-to-date with GraphQL.js version
1616
14.4.0. All parts of the API are covered by an extensive test suite of currently 1882
1717
unit tests.
1818

‎docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
# The short X.Y version.
6262
# version = u'1.1'
6363
# The full version, including alpha/beta/rc tags.
64-
version = release = u'1.1.0'
64+
version = release = u'3.0.0a0'
6565

6666
# The language for content autogenerated by Sphinx. Refer to documentation
6767
# for a list of supported languages.

‎pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "graphql-core-next"
3-
version = "1.1.0"
3+
version = "3.0.0a0"
44
description = """
55
GraphQL-core-next is a Python port of GraphQL.js,
66
the JavaScript reference implementation for GraphQL."""

‎setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
readme = readme_file.read()
99

1010
setup(
11-
name="GraphQL-core-next",
11+
name="graphql-core",
1212
version=version,
13-
description="GraphQL-core-next is a Python port of GraphQL.js,"
13+
description="GraphQL implementation for Python, a port of GraphQL.js,"
1414
" the JavaScript reference implementation for GraphQL.",
1515
long_description=readme,
1616
long_description_content_type="text/markdown",

‎src/graphql/version.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ def __str__(self):
1919
return v
2020

2121

22-
version = "1.1.0"
22+
version = "3.0.0a0"
2323

24-
version_info = VersionInfo(1, 1, 0, "final", 0)
24+
version_info = VersionInfo(3, 0, 0, "alpha", 0)
2525

2626
version_js = "14.4.0"
2727

0 commit comments

Comments
 (0)