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

Commit

Permalink
v0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukasa committed Feb 20, 2014
1 parent d3bfa64 commit 62b1cf5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion hyper/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
A module for providing an abstraction layer over the differences between
HTTP/1.1 and HTTP/2.0.
"""
__version__ = '0.0.1'
__version__ = '0.0.2'

from .http20.connection import HTTP20Connection
from .http20.response import HTTP20Response
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@
name='hyper',
version=version,
description='HTTP/2.0 for Python',
long_description=open('README.rst').read(),
long_description=open('README.rst').read() + '\n\n' + open('HISTORY.rst').read(),
author='Cory Benfield',
author_email='cory@lukasa.co.uk',
url='http://hyper.rtfd.org',
packages=packages,
package_data={'': ['LICENSE', 'README.rst', 'CONTRIBUTORS.rst']},
package_data={'': ['LICENSE', 'README.rst', 'CONTRIBUTORS.rst', 'HISTORY.rst']},
package_dir={'hyper': 'hyper'},
include_package_data=True,
license='MIT License',
Expand Down

0 comments on commit 62b1cf5

Please sign in to comment.