From a776bad75a17520f065a4c54be379e5a5c1387b9 Mon Sep 17 00:00:00 2001 From: Samuel St-Jean Date: Fri, 17 Nov 2017 15:34:49 +0100 Subject: [PATCH] change version to 0.6.1 --- CHANGELOG.md | 6 +++--- nlsam/__init__.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 445b46fc..605951b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,11 @@ # Changelog -## [0.6.1] - development version +## [0.6.1] - 2017-11-17 - Fixed a numerical issue in the Marcum Q function when computing probabilities used in the stabilizer framework. -- scipy >= 0.19.1 is now required. +- Scipy >= 0.19.1 is now required. - nlsam.stabilizer.stabilization now accepts the keyword clip_eta (default True), which can be used to allow returning negatives values for eta. - The option --no_clip_eta from nlsam_denoising can be used to activate this feature. - - The previous versions forced negatives values to zero and is still the default behavior. + - The previous versions forced negative values to zero and is still the default behavior. ## [0.6] - 2017-10-22 diff --git a/nlsam/__init__.py b/nlsam/__init__.py index 2d717865..ac78fcf1 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.6' + params['version'] = '0.6.1' params['install_requires'] = ['numpy>=1.10.4', 'scipy>=0.19.1', 'cython>=0.21',