diff --git a/doc/source/Changelog.rst b/doc/source/Changelog.rst index a02aaca..5d73d11 100644 --- a/doc/source/Changelog.rst +++ b/doc/source/Changelog.rst @@ -1,6 +1,7 @@ changelog =============== +:version 0.3.1: Fix License and RTD :version 0.3.0: Fix call to easydev.precision for the case where data contains infinite/nan values :version 0.2.1: Fix warnings due to division by zero; add some tests diff --git a/setup.py b/setup.py index 30ad648..9ce37db 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ _MAJOR = 0 _MINOR = 3 -_MICRO = 0 +_MICRO = 1 version = '%d.%d.%d' % (_MAJOR, _MINOR, _MICRO) release = '%d.%d' % (_MAJOR, _MINOR)