Skip to content

Commit 20aa32e

Browse files
Merge pull request #287 from TeamMsgExtractor/next-release
v0.36.2
2 parents dba034a + 0e03fdf commit 20aa32e

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
**v0.36.2**
2+
* [[TeamMsgExtractor #286](https://github.com/TeamMsgExtractor/msg-extractor/issues/286)] Fix missing import.
3+
14
**v0.36.1**
25
* [[TeamMsgExtractor #283](https://github.com/TeamMsgExtractor/msg-extractor/issues/283)] Added file for typing recognition.
36
* Added new option to allow messages with `NotImplementedError` attachments to at least save everything not related to them. From the command line this would be `--skip-not-implemented` or `--skip-ni`. From the save function, this would be the `skipNotImplemented` option.

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,8 +226,8 @@ your access to the newest major version of extract-msg.
226226
.. |License: GPL v3| image:: https://img.shields.io/badge/License-GPLv3-blue.svg
227227
:target: LICENSE.txt
228228

229-
.. |PyPI3| image:: https://img.shields.io/badge/pypi-0.36.1-blue.svg
230-
:target: https://pypi.org/project/extract-msg/0.36.1/
229+
.. |PyPI3| image:: https://img.shields.io/badge/pypi-0.36.2-blue.svg
230+
:target: https://pypi.org/project/extract-msg/0.36.2/
231231

232232
.. |PyPI2| image:: https://img.shields.io/badge/python-3.6+-brightgreen.svg
233233
:target: https://www.python.org/downloads/release/python-367/

extract_msg/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
# along with this program. If not, see <http://www.gnu.org/licenses/>.
2828

2929
__author__ = 'Destiny Peterson & Matthew Walker'
30-
__date__ = '2022-07-20'
31-
__version__ = '0.36.1'
30+
__date__ = '2022-08-12'
31+
__version__ = '0.36.2'
3232

3333
import logging
3434

extract_msg/message_signed_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from .exceptions import StandardViolationError
99
from .message_base import MessageBase
1010
from .signed_attachment import SignedAttachment
11-
from .utils import inputToString, unwrapMultipart
11+
from .utils import inputToBytes, inputToString, unwrapMultipart
1212

1313

1414
logger = logging.getLogger(__name__)

0 commit comments

Comments
 (0)