Skip to content

Commit 7ef25ec

Browse files
Merge pull request #83 from fabienheureux/fix/rst-readme
Fix/rst readme
2 parents 60ca18d + 6ff93a8 commit 7ef25ec

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

HISTORY.rst

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
History
33
=======
44

5+
0.4.4 (2021-08-24)
6+
==================
7+
- Fix: Readme syntax
8+
59
0.4.3 (2021-08-24)
610
==================
711
- Add markdown support for package description

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ applications:
165165
ASGI_APPLICATION = 'graphql_ws.django.routing.auth_application'
166166
167167
Run ``./manage.py runserver`` and go to
168-
`http://localhost:8000/graphql`__ to test!
168+
`http://localhost:8000/graphql <http://localhost:8000/graphql>`__ to test!
169169

170170

171171
Python 2 servers

graphql_ws/__init__.py

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

55
__author__ = """Syrus Akbary"""
66
__email__ = "[email protected]"
7-
__version__ = "0.4.3"
7+
__version__ = "0.4.4"

setup.cfg

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
[metadata]
33
name = graphql-ws
4-
version = 0.4.3
4+
version = 0.4.4
55
description = Websocket backend for GraphQL subscriptions
66
long_description = file: README.rst, CHANGES.rst
77
author = Syrus Akbary
@@ -63,7 +63,7 @@ test =
6363
universal = 1
6464

6565
[bumpversion]
66-
current_version = 0.4.3
66+
current_version = 0.4.4
6767
commit = True
6868
tag = True
6969

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
from setuptools import setup
33

44
setup(
5-
long_description_content_type='text/markdown'
5+
long_description_content_type='text/x-rst'
66
)

0 commit comments

Comments
 (0)