Skip to content

Commit

Permalink
Merge pull request #82 from fabienheureux/fix/pypi-description-issue
Browse files Browse the repository at this point in the history
Fix/pypi description issue
  • Loading branch information
fabienheureux authored Aug 24, 2021
2 parents 18b16e8 + 85cd0b7 commit 60ca18d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
5 changes: 5 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
History
=======

0.4.3 (2021-08-24)
==================
- Add markdown support for package description
- Fix: PyPi publish

0.4.2 (2021-08-24)
==================
- Bump django version
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.2"
__version__ = "0.4.3"
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.2
version = 0.4.3
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.2
current_version = 0.4.3
commit = True
tag = True

Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#!/usr/bin/env python
from setuptools import setup

setup()
setup(
long_description_content_type='text/markdown'
)

0 comments on commit 60ca18d

Please sign in to comment.