diff --git a/README.md b/README.md index 5f59fc2..281cc16 100644 --- a/README.md +++ b/README.md @@ -185,6 +185,9 @@ examples/myfile.py:34: ' print(.content)' This project falls under the BSD 3-Clause License. ## History +### v0.1.28 +* Fixed issue: can not display HTML entities as plain text in `*._repr_mimebundle_()`. + ### v0.1.27 * New gloabal parameters: `tree_style=`, `table_style=`, `use_mimebundle=`, and `skip_line_numbers=`; find them under `tx.display_params`. * Defined `display_params.defaults()` for users to get the default values of the parameters. diff --git a/src/__version__.py b/src/__version__.py index 2a6d5da..c54ce6f 100644 --- a/src/__version__.py +++ b/src/__version__.py @@ -1,5 +1,5 @@ """Version file.""" -VERSION = (0, 1, 27) +VERSION = (0, 1, 28) __version__ = ".".join(map(str, VERSION))