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’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.6.1 #762

Merged
merged 1 commit into from
May 19, 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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 2 additions & 17 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,38 +3,23 @@
###############

********************
0.6.1 (tba)
0.6.1 (19.05.2022)
********************

added
=====

removed
=======
Release ``0.6.1`` moves advanced plotting functions over to the ``weldx-widgets`` package and includes minor bugfixes.

changes
=======

- `WeldxFile` now raises a `KeyError`, if the user tries to directly read or manipulate a protected ASDF keyword
within the file. [:pull:`759`]


fixes
=====

- Fix interactive ``view_tree`` display [:pull:`756`].
- Increase ``mypy`` coverage and update type hints and GH action [:pull:`753`].

documentation
=============

ASDF
====

deprecations
============


dependencies
============

Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# YAML 1.2
---
title: weldx
version: 0.6.0
date-released: 2022-04-29
version: 0.6.1
date-released: 2022-05-19
authors:
- affiliation: "Bundesanstalt für Materialforschung und -prüfung (BAM)"
email: cagtay.fabry@bam.de
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -122,13 +122,13 @@ installing the WelDX package.

.. code:: console

conda install weldx -c conda-forge
conda install weldx weldx_widgets -c conda-forge

The package is also available on pypi.

.. code:: console

pip install weldx
pip install weldx weldx-widgets

***************
Documentation
Expand Down
6 changes: 3 additions & 3 deletions doc/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ installing the WelDX package:

.. code::

conda create -n weldx -c conda-forge weldx
conda create -n weldx -c conda-forge weldx weldx_widgets

The package is also available on pypi and can be installed via *pip*:

.. code::

pip install weldx
pip install weldx weldx-widgets

As weldx currently depends on the package ``bottleneck``, which contains
C/C++ code, you will need a working C/C++ compiler. The conda package
Expand Down Expand Up @@ -112,7 +112,7 @@ using conda:

.. code::

conda create -n weldx -c conda-forge weldx
conda create -n weldx -c conda-forge weldx weldx_widgets
conda activate weldx
python -m ipykernel install --user --name weldx --display-name "Python (weldx)"
conda create -n jlab -c conda-forge jupyterlab k3d
Expand Down