Releases: mondeja/mdpo
Releases · mondeja/mdpo
v1.1.1
Bug fixes:
- Fix
wrapwidth
argument not being applied usingpo2md
to render scriptio languages Markdown output.
v1.1.0
- Added support for Python3.11
- Now mdpo can be installed without manual compilation of md4c on a lot of more platforms.
v1.0.3
Bug fixes:
- Preserve HTML blocks in po2md output.
- Fixed edge case encoding bug in Windows when decoding PO files with md2po.
v1.0.2
Bug fixes:
- Fixed some edge case errors related to memory management.
v1.0.1
v1.0.0
Breaking changes:
- Removed support for Python 3.6.
-po
option ofmd2po
has been renamed to-p
.--plaintext
option ofmd2po
does not offer the contraction-p
now.-mo
contraction of--mo-filepath
option ofmd2po
has been removed.- Now only one
X-Generation
header with the valuemdpo v{version}
is added when using the option--xheader
ofmd2po
(--xheaders
option has been renamed to--xheader
). - Changed name of
--pre-commit
option by--check
used to return exit code 1 if any of the files have changed. - Removed
mdpo.__version__
,mdpo.__title__
andmdpo.__description__
(useimportlib.metadata
orimportlib_metadata
).
Replace with something like:import sys if sys.version_info > (3, 7): import importlib.metadata as importlib_metadata else: import importlib_metadata metadata = importlib_metadata.distribution("mdpo").metadata __version__ = metadata["version"] # or just `importlib_metadata.version("mdpo")` __title__ = metadata["name"] __description__ = metadata["summary"]
v0.3.86
Bug fixes:
- Do not allow
nan
value for-w/--wrapwidth
arguments.
v0.3.85
Enhancements:
- Allow to pass languages with
-l es fr de
tomd2po2md
CLI.
v0.3.84
Enhancements
- Made public some parsers state properties and documented them.
v0.3.83
Enhancements
events
programmatic APIs kwargs now accepts path to functions inside files withpath/to/file.py::function_name
syntax.- Added
--event
CLI optional argument tomd2po
andpo2md
CLIs.