Breaking
* refactor!: rename python package `serializable` -> `py_serializable` (155)
The python package was renamed from `serializable` to `py_serializable`.
Therefore, you need to adjust your imports.
The following shows a quick way to adjust imports in the most efficient way.
OLD imports
py
import serializable
from serializable import ViewType, XmlArraySerializationType, XmlStringSerializationType
from serializable.helpers import BaseHelper, Iso8601Date
ADJUSTED imports
py
import py_serializable as serializable
from py_serializable import ViewType, XmlArraySerializationType, XmlStringSerializationType
from py_serializable.helpers import BaseHelper, Iso8601Date
see migration path: <https://py-serializable.readthedocs.io/en/refactor-rename-installable-py_serializable/migration.html>
----
fixes 151
---------
Signed-off-by: Jan Kowalleck <jan.kowalleckgmail.com>
Signed-off-by: semantic-release <semantic-release>
Co-authored-by: semantic-release <semantic-release> ([`67afaef`](https://github.com/madpah/serializable/commit/67afaef4a5e670c533409f1ccbc3d2dbb263d2de))
Unknown
* Delete duplicate CODEOWNERS (156)
we have a codeowners file in root already ([`b64cdde`](https://github.com/madpah/serializable/commit/b64cdde6d4561355f7b92416dfcb36a8ff770be5))