Skip to content

Commit

Permalink
Bump stuff for next version
Browse files Browse the repository at this point in the history
  • Loading branch information
TheElementalOfDestruction committed Oct 22, 2024
1 parent ecb9798 commit 4c23597
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
**v0.52.0**
* [[TeamMsgExtractor #444](https://github.com/TeamMsgExtractor/msg-extractor/issues/444)] Fix typo in string that prevented HTML body from generating from the plain text body properly.
* Adjusted the behavior of `MSGFile.areStringsUnicode` to prioritize the property specified by the parent MSG files for MSG files that are embedded. Additionally, added a fallback to rely on whether or not there is a stream using the `001F` type to determine the property value if it is entirely missing.
* Adjusted `OleWriter.fromMsg()` and `MSGFile.export()` to add the argument `allowBadEmbed` which helps to correct a few different issues that may appear in embedded MSG files. These corrections allow the extracte file to still be extracted and to open properly in Outlook.
* In addition to the above, the errors that some of those corrections will surpress are now significantly more informative about what went wrong.

**v0.51.1**
* Add class type added in last version to known class types.

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -260,8 +260,8 @@ your access to the newest major version of extract-msg.
.. |License: GPL v3| image:: https://img.shields.io/badge/License-GPLv3-blue.svg
:target: LICENSE.txt

.. |PyPI3| image:: https://img.shields.io/badge/pypi-0.51.1-blue.svg
:target: https://pypi.org/project/extract-msg/0.51.1/
.. |PyPI3| image:: https://img.shields.io/badge/pypi-0.52.0-blue.svg
:target: https://pypi.org/project/extract-msg/0.52.0/

.. |PyPI2| image:: https://img.shields.io/badge/python-3.8+-brightgreen.svg
:target: https://www.python.org/downloads/release/python-3810/
Expand Down
4 changes: 2 additions & 2 deletions extract_msg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.

__author__ = 'Destiny Peterson & Matthew Walker'
__date__ = '2024-10-11'
__version__ = '0.51.1'
__date__ = '2024-10-22'
__version__ = '0.52.0'

__all__ = [
# Modules:
Expand Down

0 comments on commit 4c23597

Please sign in to comment.