Skip to content

Commit 60ca18d

Browse files
Merge pull request #82 from fabienheureux/fix/pypi-description-issue
Fix/pypi description issue
2 parents 18b16e8 + 85cd0b7 commit 60ca18d

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

HISTORY.rst

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

5+
0.4.3 (2021-08-24)
6+
==================
7+
- Add markdown support for package description
8+
- Fix: PyPi publish
9+
510
0.4.2 (2021-08-24)
611
==================
712
- Bump django version

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.2"
7+
__version__ = "0.4.3"

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.2
4+
version = 0.4.3
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.2
66+
current_version = 0.4.3
6767
commit = True
6868
tag = True
6969

setup.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#!/usr/bin/env python
22
from setuptools import setup
33

4-
setup()
4+
setup(
5+
long_description_content_type='text/markdown'
6+
)

0 commit comments

Comments
 (0)