Skip to content

Commit

Permalink
v0.29.5
Browse files Browse the repository at this point in the history
  • Loading branch information
TheElementalOfDestruction committed Jan 28, 2022
1 parent 5ba7d74 commit 82136c6
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
**v0.29.5**
* Updated list of known MSG class types so the module would correctly give `UnsupportedMSGTypeError` instead of `UnrecognizedMSGTypeError`.

**v0.29.4**
* Fixed typo in `utils.knownMsgClass`.
* Updated contributing guidelines and pull request template.
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,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.29.4-blue.svg
:target: https://pypi.org/project/extract-msg/0.29.4/
.. |PyPI3| image:: https://img.shields.io/badge/pypi-0.29.5-blue.svg
:target: https://pypi.org/project/extract-msg/0.29.5/

.. |PyPI1| image:: https://img.shields.io/badge/python-2.7+-brightgreen.svg
:target: https://www.python.org/downloads/release/python-2715/
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__ = '2022-01-27'
__version__ = '0.29.4'
__date__ = '2022-01-28'
__version__ = '0.29.5'

import logging

Expand Down
4 changes: 3 additions & 1 deletion extract_msg/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -315,15 +315,17 @@
'ipm.distlist',
'ipm.document',
'ipm.ole.class',
'ipm.outlook.recall',
'ipm.note',
'ipm.post',
'ipm.stickynote',
'ipm.recall.report',
'ipm.remote',
'ipm.report',
'ipm.resend',
'ipm.schedule',
'ipm.task',
'ipm.taskrequest'
'ipm.taskrequest',
'report',
)

Expand Down

0 comments on commit 82136c6

Please sign in to comment.