Skip to content

Commit

Permalink
Prepare version 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Cito committed Mar 10, 2019
1 parent 94b93eb commit 7217160
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 9 deletions.
6 changes: 3 additions & 3 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
MIT License

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

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ a query language for APIs created by Facebook.
[![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/)
[![Code Style](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)

The current version 1.0.1 of GraphQL-core-next is up-to-date with GraphQL.js version
The current version 1.0.2 of GraphQL-core-next is up-to-date with GraphQL.js version
14.1.1. All parts of the API are covered by an extensive test suite of currently 1723
unit tests.

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@

# General information about the project.
project = u'GraphQL-core-next'
copyright = u'2018, Christoph Zwerschke'
copyright = u'2019, Christoph Zwerschke'
author = u'Christoph Zwerschke'

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

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
5 changes: 3 additions & 2 deletions graphql/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
- :mod:`graphql/subscription`: Subscribe to data updates.
"""

__version__ = "1.0.1"
__version__ = "1.0.2"
__version_js__ = "14.1.1"

# The primary entry point into fulfilling a GraphQL request.
Expand Down Expand Up @@ -305,7 +305,7 @@
)

# Create, format, and print GraphQL errors.
from .error import GraphQLError, format_error, print_error
from .error import GraphQLError, format_error, print_error, INVALID

# Utilities for operating on GraphQL type schema and parsed sources.
from .utilities import (
Expand Down Expand Up @@ -598,6 +598,7 @@
"GraphQLError",
"format_error",
"print_error",
"INVALID",
"get_introspection_query",
"get_operation_ast",
"get_operation_root_type",
Expand Down
1 change: 1 addition & 0 deletions graphql/error/graphql_error.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ def __init__(
self.__context__ = original_error.__context__
if not extensions:
try:
# noinspection PyUnresolvedReferences
extensions = original_error.extensions # type: ignore
except AttributeError:
pass
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0.1
current_version = 1.0.2
commit = True
tag = True

Expand Down

0 comments on commit 7217160

Please sign in to comment.