Skip to content

Commit 7217160

Browse files
committed
Prepare version 1.0.2
1 parent 94b93eb commit 7217160

File tree

6 files changed

+11
-9
lines changed

6 files changed

+11
-9
lines changed

LICENSE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
MIT License
22

3-
Copyright (c) 2017-2018 Facebook, Inc. (GraphQL.js)
4-
Copyright (c) 2016 Syrus Akbary (GraphQL-core)
5-
Copyright (c) 2018 Christoph Zwerschke (GraphQL-core-next)
3+
Copyright (c) 2017-2019 Facebook, Inc. (GraphQL.js)
4+
Copyright (c) 2016-2017 Syrus Akbary (GraphQL-core)
5+
Copyright (c) 2018-2019 Christoph Zwerschke (GraphQL-core-next)
66

77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
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.0.1 of GraphQL-core-next is up-to-date with GraphQL.js version
15+
The current version 1.0.2 of GraphQL-core-next is up-to-date with GraphQL.js version
1616
14.1.1. All parts of the API are covered by an extensive test suite of currently 1723
1717
unit tests.
1818

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151

5252
# General information about the project.
5353
project = u'GraphQL-core-next'
54-
copyright = u'2018, Christoph Zwerschke'
54+
copyright = u'2019, Christoph Zwerschke'
5555
author = u'Christoph Zwerschke'
5656

5757
# The version info for the project you're documenting, acts as replacement for
@@ -61,7 +61,7 @@
6161
# The short X.Y version.
6262
version = u'1.0'
6363
# The full version, including alpha/beta/rc tags.
64-
release = u'1.0.1'
64+
release = u'1.0.2'
6565

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

graphql/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
- :mod:`graphql/subscription`: Subscribe to data updates.
3838
"""
3939

40-
__version__ = "1.0.1"
40+
__version__ = "1.0.2"
4141
__version_js__ = "14.1.1"
4242

4343
# The primary entry point into fulfilling a GraphQL request.
@@ -305,7 +305,7 @@
305305
)
306306

307307
# Create, format, and print GraphQL errors.
308-
from .error import GraphQLError, format_error, print_error
308+
from .error import GraphQLError, format_error, print_error, INVALID
309309

310310
# Utilities for operating on GraphQL type schema and parsed sources.
311311
from .utilities import (
@@ -598,6 +598,7 @@
598598
"GraphQLError",
599599
"format_error",
600600
"print_error",
601+
"INVALID",
601602
"get_introspection_query",
602603
"get_operation_ast",
603604
"get_operation_root_type",

graphql/error/graphql_error.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ def __init__(
128128
self.__context__ = original_error.__context__
129129
if not extensions:
130130
try:
131+
# noinspection PyUnresolvedReferences
131132
extensions = original_error.extensions # type: ignore
132133
except AttributeError:
133134
pass

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.0.1
2+
current_version = 1.0.2
33
commit = True
44
tag = True
55

0 commit comments

Comments
 (0)