Skip to content

Commit

Permalink
Merge pull request #242 from TeamMsgExtractor/next-release
Browse files Browse the repository at this point in the history
v0.30.8
  • Loading branch information
TheElementalOfDestruction authored Feb 1, 2022
2 parents 6b5e458 + ffc71b3 commit 8993a4d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
**v0.30.8**
* Update `imapclient` requirement to `>=2.1.0` instead of `==2.1.0`. Currently there are no changes that would prevent current future versions from working.

**v0.30.7**
* [[TeamMsgExtractor #239](https://github.com/TeamMsgExtractor/msg-extractor/issues/239)] Fixed msg.py not having `import pathlib`.
* After going through the details of the example MSG files provided with the module, specifically unicode.msg, I now am glad I decided to put in some fail-safes in the HTML body processing. One of them does not have an `<html>`, `<head>`, nor `<body>` tag, and so would have had an error. This will actually prevent the header from injecting properly as well, so a bit of validation before was made necessary to ensure the HTML saving would still work.
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -208,8 +208,8 @@ And thank you to everyone who has opened an issue and helped us track down those
.. |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.30.7-blue.svg
:target: https://pypi.org/project/extract-msg/0.30.7/
.. |PyPI3| image:: https://img.shields.io/badge/pypi-0.30.8-blue.svg
:target: https://pypi.org/project/extract-msg/0.30.8/

.. |PyPI2| image:: https://img.shields.io/badge/python-3.6+-brightgreen.svg
:target: https://www.python.org/downloads/release/python-367/
Expand Down
2 changes: 1 addition & 1 deletion extract_msg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

__author__ = 'Destiny Peterson & Matthew Walker'
__date__ = '2022-01-31'
__version__ = '0.30.7'
__version__ = '0.30.8'

import logging

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

# First level requirements
imapclient==2.1.0
imapclient>=2.1.0
olefile>=0.46
tzlocal>=2.1
compressed_rtf>=1.0.6
Expand Down

0 comments on commit 8993a4d

Please sign in to comment.