diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 1fa7325..ade6b98 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,7 @@ +version 1.0.1 (2014-12-02) +-------------------------- +- Fix `lmom_fit` for `gev` distribution. Did not return `OrderedDict` in some cases. + version 1.0.0 (2014-12-01) -------------------------- - Major rewrite with all distributions now being standard scipy `rv_continous` classes diff --git a/docs/source/conf.py b/docs/source/conf.py index 5b279d7..63de738 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -58,7 +58,7 @@ # The short X.Y version. version = '1.0' # The full version, including alpha/beta/rc tags. -release = '1.0.0' +release = '1.0.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index c17e6d0..b083d80 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,5 @@ from setuptools import setup from os import path -from codecs import open here = path.abspath(path.dirname(__file__)) # Get the long description from the relevant file @@ -9,7 +8,7 @@ setup( name='lmoments3', - version='1.0.0', + version='1.0.1', packages=['lmoments3'], url='https://github.com/OpenHydrology/lmoments3', license='GPLv3',