Skip to content

Commit

Permalink
Merge pull request #83 from fabienheureux/fix/rst-readme
Browse files Browse the repository at this point in the history
Fix/rst readme
  • Loading branch information
fabienheureux authored Aug 24, 2021
2 parents 60ca18d + 6ff93a8 commit 7ef25ec
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <http://localhost:8000/graphql>`__ to test!


Python 2 servers
Expand Down
2 changes: 1 addition & 1 deletion graphql_ws/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

__author__ = """Syrus Akbary"""
__email__ = "[email protected]"
__version__ = "0.4.3"
__version__ = "0.4.4"
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -63,7 +63,7 @@ test =
universal = 1

[bumpversion]
current_version = 0.4.3
current_version = 0.4.4
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
from setuptools import setup

setup(
long_description_content_type='text/markdown'
long_description_content_type='text/x-rst'
)

0 comments on commit 7ef25ec

Please sign in to comment.