diff --git a/HISTORY.rst b/HISTORY.rst index 1a7a4d1..ed7f666 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,10 @@ History ======= +0.4.4 (2021-08-24) +================== +- Fix: Readme syntax + 0.4.3 (2021-08-24) ================== - Add markdown support for package description diff --git a/README.rst b/README.rst index 4882551..65a6816 100644 --- a/README.rst +++ b/README.rst @@ -165,7 +165,7 @@ applications: ASGI_APPLICATION = 'graphql_ws.django.routing.auth_application' Run ``./manage.py runserver`` and go to -`http://localhost:8000/graphql`__ to test! +`http://localhost:8000/graphql `__ to test! Python 2 servers diff --git a/graphql_ws/__init__.py b/graphql_ws/__init__.py index 30e0e02..7d385e9 100644 --- a/graphql_ws/__init__.py +++ b/graphql_ws/__init__.py @@ -4,4 +4,4 @@ __author__ = """Syrus Akbary""" __email__ = "me@syrusakbary.com" -__version__ = "0.4.3" +__version__ = "0.4.4" diff --git a/setup.cfg b/setup.cfg index 8e2e8cc..68781b0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,7 @@ [metadata] name = graphql-ws -version = 0.4.3 +version = 0.4.4 description = Websocket backend for GraphQL subscriptions long_description = file: README.rst, CHANGES.rst author = Syrus Akbary @@ -63,7 +63,7 @@ test = universal = 1 [bumpversion] -current_version = 0.4.3 +current_version = 0.4.4 commit = True tag = True diff --git a/setup.py b/setup.py index 4f21d95..e8e7377 100644 --- a/setup.py +++ b/setup.py @@ -2,5 +2,5 @@ from setuptools import setup setup( - long_description_content_type='text/markdown' + long_description_content_type='text/x-rst' )