diff --git a/HISTORY.rst b/HISTORY.rst index d64038fa..85112157 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,13 @@ Release History =============== +0.6.2 (2016-03-13) +------------------ + +*Bugfixes* + +- Fixed packaging error made in prior release. + 0.6.1 (2016-06-13) ------------------ diff --git a/docs/source/conf.py b/docs/source/conf.py index eb37078d..b34357b5 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -55,9 +55,9 @@ # built documents. # # The short X.Y version. -version = '0.6.1' +version = '0.6.2' # The full version, including alpha/beta/rc tags. -release = '0.6.1' +release = '0.6.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/hyper/__init__.py b/hyper/__init__.py index efe55258..69d4b5d2 100644 --- a/hyper/__init__.py +++ b/hyper/__init__.py @@ -33,4 +33,4 @@ # Set default logging handler. logging.getLogger(__name__).addHandler(logging.NullHandler()) -__version__ = '0.6.1' +__version__ = '0.6.2'