Skip to content

Commit

Permalink
v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
prisae committed Jul 5, 2019
1 parent 7580197 commit 9b79b68
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 25 deletions.
12 changes: 9 additions & 3 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
Changelog
#########

*latest*
--------

*v0.7.0* : H-field
------------------

**2019-07-05**

- New routines:

- ``utils.get_h_field``: Small routine to calculate the magnetic field from
the electric field using Faraday's law.
- ``utils.get_receiver``: Small wrapper to interpolate a field at receiver
positions. Added 3D spline interpolation; is the new the default.
positions. Added 3D spline interpolation; is the new default.

- Re-implemented the possibility to define isotropic magnetic permeabilities in
``utils.Model``. Magnetic permeability is not tri-axially included in the
Expand All @@ -18,6 +21,9 @@ Changelog
- CPU-graph added on top of RAM-graph.
- Expand ``utils.Field`` to work with pickle/shelve.
- Jit ``np.linalg.norm`` (``njitted.l2norm``).
- Use ``scooby`` (soft dependency) for versioning, rename ``Version`` to
``Report`` (backwards incompatible).

- Bug fixes:

- Small bugfix introduced in ebd2c9d5: ``sc_cycle`` and ``lr_cycle`` was not
Expand Down
19 changes: 0 additions & 19 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,6 @@

----

.. image:: https://readthedocs.org/projects/emg3d/badge/?version=latest
:target: http://emg3d.readthedocs.io/en/latest
:alt: Documentation Status
.. image:: https://travis-ci.org/empymod/emg3d.svg?branch=master
:target: https://travis-ci.org/empymod/emg3d
:alt: Travis-CI
.. image:: https://coveralls.io/repos/github/empymod/emg3d/badge.svg?branch=master
:target: https://coveralls.io/github/empymod/emg3d?branch=master
:alt: Coveralls
.. image:: https://img.shields.io/codacy/grade/a15b80f75cd64be3bca73da30f191a83/master.svg
:target: https://www.codacy.com/app/prisae/emg3d
:alt: Codacy
.. image:: https://img.shields.io/badge/benchmark-asv-blue.svg?style=flat
:target: https://empymod.github.io/emg3d-asv
:alt: Airspeed Velocity
.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.3229006.svg
:target: https://doi.org/10.5281/zenodo.3229006
:alt: Zenodo DOI

.. sphinx-inclusion-marker
A multigrid solver for 3D electromagnetic diffusion with tri-axial electrical
Expand Down
2 changes: 1 addition & 1 deletion emg3d/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@

__all__ = ['solver', 'utils', 'Report']

__version__ = '0.6.3dev0'
__version__ = '0.7.0'
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='emg3d',
version='0.6.3dev0',
version='0.7.0',
description=description,
long_description=readme,
author='The emg3d Developers',
author_email='[email protected]',
url='https://empymod.github.io',
download_url='https://github.com/empymod/emg3d/tarball/v0.6.2',
download_url='https://github.com/empymod/emg3d/tarball/v0.7.0',
license='Apache License V2.0',
packages=['emg3d'],
classifiers=[
Expand Down

0 comments on commit 9b79b68

Please sign in to comment.