Skip to content
This repository was archived by the owner on Jan 13, 2021. It is now read-only.

Commit 62b1cf5

Browse files
committed
v0.0.2
1 parent d3bfa64 commit 62b1cf5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

hyper/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
A module for providing an abstraction layer over the differences between
77
HTTP/1.1 and HTTP/2.0.
88
"""
9-
__version__ = '0.0.1'
9+
__version__ = '0.0.2'
1010

1111
from .http20.connection import HTTP20Connection
1212
from .http20.response import HTTP20Response

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@
3131
name='hyper',
3232
version=version,
3333
description='HTTP/2.0 for Python',
34-
long_description=open('README.rst').read(),
34+
long_description=open('README.rst').read() + '\n\n' + open('HISTORY.rst').read(),
3535
author='Cory Benfield',
3636
author_email='[email protected]',
3737
url='http://hyper.rtfd.org',
3838
packages=packages,
39-
package_data={'': ['LICENSE', 'README.rst', 'CONTRIBUTORS.rst']},
39+
package_data={'': ['LICENSE', 'README.rst', 'CONTRIBUTORS.rst', 'HISTORY.rst']},
4040
package_dir={'hyper': 'hyper'},
4141
include_package_data=True,
4242
license='MIT License',

0 commit comments

Comments
 (0)