Skip to content

Commit 4fa0df4

Browse files
committed
Fix broken GitHub link tags: 2.0 -> v2.0.0
1 parent e94716d commit 4fa0df4

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

UPGRADE-v2.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ developer has to write to use them.
2121

2222

2323
> The type metaclasses are now deleted as they are no longer necessary. If your code was depending
24-
> on this strategy for creating custom attrs, see an [example on how to do it in 2.0](https://github.com/graphql-python/graphene/blob/2.0/graphene/tests/issues/test_425.py).
24+
> on this strategy for creating custom attrs, see an [example on how to do it in 2.0](https://github.com/graphql-python/graphene/blob/v2.0.0/graphene/tests/issues/test_425.py).
2525
2626
## Deprecations
2727

graphene/relay/connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def type(self):
102102
if is_node(type):
103103
raise Exception(
104104
"ConnectionField's now need a explicit ConnectionType for Nodes.\n"
105-
"Read more: https://github.com/graphql-python/graphene/blob/2.0/UPGRADE-v2.0.md#node-connections"
105+
"Read more: https://github.com/graphql-python/graphene/blob/v2.0.0/UPGRADE-v2.0.md#node-connections"
106106
)
107107

108108
assert issubclass(connection_type, Connection), (

graphene/types/abstracttype.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ class AbstractType(SubclassWithMeta):
77
def __init_subclass__(cls, *args, **kwargs):
88
warn_deprecation(
99
"Abstract type is deprecated, please use normal object inheritance instead.\n"
10-
"See more: https://github.com/graphql-python/graphene/blob/2.0/UPGRADE-v2.0.md#deprecations"
10+
"See more: https://github.com/graphql-python/graphene/blob/v2.0.0/UPGRADE-v2.0.md#deprecations"
1111
)
1212
super(AbstractType, cls).__init_subclass__(*args, **kwargs)

graphene/types/mutation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def __init_subclass_with_meta__(cls, resolver=None, output=None, arguments=None,
5050
warn_deprecation((
5151
"Please use {name}.Arguments instead of {name}.Input."
5252
"Input is now only used in ClientMutationID.\n"
53-
"Read more: https://github.com/graphql-python/graphene/blob/2.0/UPGRADE-v2.0.md#mutation-input"
53+
"Read more: https://github.com/graphql-python/graphene/blob/v2.0.0/UPGRADE-v2.0.md#mutation-input"
5454
).format(name=cls.__name__))
5555

5656
if input_class:

0 commit comments

Comments
 (0)