v0.6.0
What's Changed
⚠ This might break stuff.
We moved the enums EdifactFormat
and EdifactFormatVersion
to the new efoli
package in #434
This is because more and more of our libraries and applications relied on these two enums but - other than that - had no other "real" dependency on maus
. To not strongly couple to maus and all its dependencies, we moved the enums and utility functions related to them to a separate package: efoli
Change your import paths as follows:
Import Paths for maus < v0.6.0
# Enums
from maus.edifact import EdifactFormat, EdifactFormatVersion
# related utility functions
from maus.edifact import get_edifact_format_version, get_current_edifact_format_version, get_format_of_pruefidentifikator
Import Paths for maus >= v0.6.0
# Enums
from efoli import EdifactFormat, EdifactFormatVersion # Enums
# related utility functions
from efoli import get_edifact_format_version, get_current_edifact_format_version, get_format_of_pruefidentifikator
efoli
is now also a dependency of maus
itself for any version >=0.6.0.
Full Changelog: v0.5.4...v0.6.0