Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

馃殌 4.1.1 release #557

Merged
merged 1 commit into from Aug 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Expand Up @@ -3,6 +3,10 @@ All notable changes to magpylib are documented here.

# Releases

# [4.1.1] - 2022-08-11
- Fix inverted y and z axes colors for sensor representations ([556](https://github.com/magpylib/magpylib/pull/556))


# [4.1.0] - 2022-08-08
* Field computation `getB`/`getH` now supports 2D [pandas](https://pandas.pydata.org/).[dataframe](https://pandas.pydata.org/docs/user_guide/dsintro.html#dataframe) in addition to the `numpy.ndarray` as output type. ([#523](https://github.com/magpylib/magpylib/pull/523))
* Internal `getB`/`getH` refactoring. The direct interface with `'Line'` source argument now also accepts `'vertices'` as argument. ([#540](https://github.com/magpylib/magpylib/pull/540))
Expand Down Expand Up @@ -384,6 +388,7 @@ The first official release of the magpylib library.

---

[4.1.1]:https://github.com/magpylib/magpylib/compare/4.1.0...4.1.1
[4.1.0]:https://github.com/magpylib/magpylib/compare/4.0.4...4.1.0
[4.0.4]:https://github.com/magpylib/magpylib/compare/4.0.3...4.0.4
[4.0.3]:https://github.com/magpylib/magpylib/compare/4.0.2...4.0.3
Expand Down
2 changes: 1 addition & 1 deletion magpylib/__init__.py
Expand Up @@ -28,7 +28,7 @@

"""
# module level dunders
__version__ = "4.1.0"
__version__ = "4.1.1"
__author__ = "Michael Ortner & Alexandre Boisselet"
__credits__ = "The Magpylib community"
__all__ = [
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -21,7 +21,7 @@
import setuptools
from setuptools.command.install import install

_magPyVersion = "4.1.0"
_magPyVersion = "4.1.1"
_SphinxVersion = "4.4.0"
_name = "magpylib"
_description = "Free Python3 package to compute magnetic fields."
Expand Down