diff --git a/CHANGELOG.md b/CHANGELOG.md index cb5be2aa..578ec0ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## [0.6] - Development version +## [0.6] - 2017-10-22 - PIESNO will now warn if less than 1% of noisy voxels were identified, which might indicate that something has gone wrong during the noise estimation. - On python >= 3.4, --mp_method [a_valid_start_method](https://docs.python.org/3/library/multiprocessing.html#contexts-and-start-methods) can now be used to control behavior in the multiprocessing loop. diff --git a/nlsam/__init__.py b/nlsam/__init__.py index 22b20ab3..67e51696 100644 --- a/nlsam/__init__.py +++ b/nlsam/__init__.py @@ -46,7 +46,7 @@ def get_setup_params(): params['author'] = 'Samuel St-Jean' params['author_email'] = 'samuel@isi.uu.nl' params['url'] = 'https://github.com/samuelstjean/nlsam' - params['version'] = '0.5.1' + params['version'] = '0.6' params['install_requires'] = ['numpy>=1.10.4', 'scipy>=0.14', 'cython>=0.21',