Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 0.51.1 #443

Merged
merged 5 commits into from
Oct 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
**v0.51.1**
* Add class type added in last version to known class types.

**v0.51.0**
* [[TeamMsgExtractor #401](https://github.com/TeamMsgExtractor/msg-extractor/issues/401)] Add basic support for MSG class type `IPM.SkypeTeams.Message`.

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.0-blue.svg
:target: https://pypi.org/project/extract-msg/0.51.0 /
.. |PyPI3| image:: https://img.shields.io/badge/pypi-0.51.1-blue.svg
:target: https://pypi.org/project/extract-msg/0.51.1/

.. |PyPI2| image:: https://img.shields.io/badge/python-3.8+-brightgreen.svg
:target: https://www.python.org/downloads/release/python-3810/
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__ = '2024-10-11'
__version__ = '0.51.0'
__version__ = '0.51.1'

__all__ = [
# Modules:
Expand Down
3 changes: 2 additions & 1 deletion extract_msg/constants/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,7 @@
'ipm.report',
'ipm.resend',
'ipm.schedule',
'ipm.skypeteams.message'
'ipm.task',
'ipm.taskrequest',
'report',
Expand Down Expand Up @@ -291,4 +292,4 @@
0x1102: 'PtypMultipleBinary',
}

# END CONSTANTS.
# END CONSTANTS.
Loading