From c1457dabb0580d2fb85f5985c40b96254395f2d4 Mon Sep 17 00:00:00 2001 From: Steven Murray Date: Mon, 6 Aug 2018 06:46:12 +0800 Subject: [PATCH] Bump version --- AUTHORS.rst | 3 ++- CHANGELOG.rst | 14 ++++++++++++++ hankel/__init__.py | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/AUTHORS.rst b/AUTHORS.rst index fb75619..6bc811d 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -4,4 +4,5 @@ Steven Murray: `@steven-murray ` Contributors ============ -Francis Poulin `@francispoulin ` + v0.3.5 [8 Dec 2017] ------------------- **Bugfixes** + - Fixed Python 3 support from v0.3.4 v0.3.4 [28 July 2017] --------------------- **Features** + - Added get_h function to aide in determining optimal h value for a given transformation. **Enhancements** + - Added _get_series method to quickly retrieve the summed series for the integration. - Two updated notebook examples. **Bugfixes** + - Moved setting of N to avoid error. v0.3.3 [28 July 2017] --------------------- **Features** + - Some additional tools to determine accuracy -- quick calculation of last term in sum, and evaluated range. **Enhancements** + - Default setting of N=3.2/h, which is the maximum possible N that should be chosen, as above this, the series truncates due to the double-exponential convergence to the roots of the Bessel function. **Bugfixes** + - Fixed error in cumulative sum when k is not scalar. v0.3.2 [12 July 2017] @@ -38,6 +51,7 @@ v0.3.2 [12 July 2017] - Two new jupyter notebook demos (find them in the docs) by `@francispoulin `_ **Bugfixes** + - Fixed relative import in Python 3 (tests now passing), thanks to `@louity `_ - Fixed docstring of SymmetricFourierTransform to have correct Fourier convention equation - Fixed bug in choosing alternative conventions in which the fourier-dual variable was unchanged. diff --git a/hankel/__init__.py b/hankel/__init__.py index 1564ffa..8663569 100644 --- a/hankel/__init__.py +++ b/hankel/__init__.py @@ -1,3 +1,3 @@ from .hankel import * -__version__ = '0.3.5' \ No newline at end of file +__version__ = '0.3.6' \ No newline at end of file