diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 427dfc5f..b56611e4 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,8 +1,8 @@ Changelog ######### -latest ------- +v1.6.1 - *2018-05-05* +--------------------- - Add the possibility to calculate secondary fields only (excluding the direct field) by passing the argument ``xdirect=None``. The complete @@ -14,7 +14,8 @@ latest - If None, direct field is excluded from the calculation, and only reflected fields are returned (secondary field). -- Bugfix in ``model.analytical`` for ``ab=[36, 63]`` (zeroes). +- Bugfix in ``model.analytical`` for ``ab=[36, 63]`` (zeroes) + [`empymod#16 `_]. v1.6.0 - *2018-05-01* diff --git a/README.rst b/README.rst index 3c8378fe..33277138 100644 --- a/README.rst +++ b/README.rst @@ -5,15 +5,6 @@ ---- -.. image:: https://readthedocs.org/projects/empymod/badge/?version=latest - :target: http://empymod.readthedocs.io/en/latest/?badge=latest - :alt: Documentation Status -.. image:: https://travis-ci.org/empymod/empymod.svg?branch=master - :target: https://travis-ci.org/empymod/empymod - :alt: Travis-CI -.. image:: https://coveralls.io/repos/github/empymod/empymod/badge.svg?branch=master - :target: https://coveralls.io/github/empymod/empymod?branch=master - :alt: Coveralls .. sphinx-inclusion-marker diff --git a/ROADMAP.rst b/ROADMAP.rst index 4339b9ef..191d6d19 100644 --- a/ROADMAP.rst +++ b/ROADMAP.rst @@ -24,7 +24,7 @@ in touch if you would like to tackle one of these problems! - Load and save functions to easily store and load model information (resistivity model, acquisition parameters, and modelling parameters) together with the modelling data (using ``pickle`` or ``shelve``). - Better than after the abstraction + Probably easier after implementation of the abstraction [`empymod#14 `_]. @@ -44,8 +44,6 @@ in touch if you would like to tackle one of these problems! - Fourier transform - - Include the method outlined by Mulder et al., 2008, Geophysics - (piecewise-cubic Hermite interpolation with a FFT). - Change ``fft`` to use discrete sine/cosine transforms instead, as all other Fourier transforms - If previous step is successful, clean up the internal decisions @@ -58,8 +56,11 @@ in touch if you would like to tackle one of these problems! - Hankel transform - Add the ``fht``-module from FFTLog for the Hankel transform. + +- Hankel and Fourier transform - Include the method outlined by Mulder et al., 2008, Geophysics - (piecewise-cubic Hermite interpolation with a FFT). + (piecewise-cubic Hermite interpolation with a FFT) to try to further + speed-up the splined versions. - Extend examples (example-notebooks) diff --git a/empymod/__init__.py b/empymod/__init__.py index 4a467124..4e658761 100644 --- a/empymod/__init__.py +++ b/empymod/__init__.py @@ -662,4 +662,4 @@ __all__ = ['bipole', 'dipole', 'analytical'] # Version -__version__ = '1.6.1.dev0' +__version__ = '1.6.1' diff --git a/setup.py b/setup.py index 5345c139..d99545c8 100644 --- a/setup.py +++ b/setup.py @@ -7,13 +7,13 @@ setup( name='empymod', - version='1.6.1.dev0', + version='1.6.1', description=description, long_description=readme, author='Dieter Werthmüller', author_email='dieter@werthmuller.org', url='https://empymod.github.io', - download_url='https://github.com/empymod/empymod/tarball/v1.6.0', + download_url='https://github.com/empymod/empymod/tarball/v1.6.1', license='Apache License V2.0', packages=['empymod'], classifiers=[