Skip to content

Commit

Permalink
v1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
prisae committed May 5, 2018
1 parent 4739c94 commit 9773a9c
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 19 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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 <https://github.com/empymod/empymod/issues/16>`_].


v1.6.0 - *2018-05-01*
Expand Down
9 changes: 0 additions & 9 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
9 changes: 5 additions & 4 deletions ROADMAP.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://github.com/empymod/empymod/issues/14>`_].


Expand All @@ -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
Expand All @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion empymod/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -662,4 +662,4 @@
__all__ = ['bipole', 'dipole', 'analytical']

# Version
__version__ = '1.6.1.dev0'
__version__ = '1.6.1'
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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='[email protected]',
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=[
Expand Down

0 comments on commit 9773a9c

Please sign in to comment.