Skip to content

Commit

Permalink
Merge pull request #363 from TeamMsgExtractor/next-release
Browse files Browse the repository at this point in the history
Version 0.41.1
  • Loading branch information
TheElementalOfDestruction authored May 10, 2023
2 parents 1837ce2 + d75c868 commit 7e93f7b
Show file tree
Hide file tree
Showing 4 changed files with 8 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.41.1**
* [[TeamMsgExtractor #362](https://github.com/TeamMsgExtractor/msg-extractor/issues/362)] Fixed an issue with the removal of the `--dev` option missing one of the checks (I swear I actually tested it).

**v0.41.0**
* [[TeamMsgExtractor #357](https://github.com/TeamMsgExtractor/msg-extractor/issues/357)] Fixed an issue where the properties stream being absent would raise an error message that was not clear.
* [[TeamMsgExtractor #357](https://github.com/TeamMsgExtractor/msg-extractor/issues/357)] Added a way to suppress `StandardViolationError` for poorly created files. This may cause issues you might not expect since this exception is meant to stop the processing for a reason.
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -250,8 +250,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.41.0-blue.svg
:target: https://pypi.org/project/extract-msg/0.41.0/
.. |PyPI3| image:: https://img.shields.io/badge/pypi-0.41.1-blue.svg
:target: https://pypi.org/project/extract-msg/0.41.1/

.. |PyPI2| image:: https://img.shields.io/badge/python-3.8+-brightgreen.svg
:target: https://www.python.org/downloads/release/python-3816/
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__ = '2023-05-09'
__version__ = '0.41.0'
__date__ = '2023-05-10'
__version__ = '0.41.1'

__all__ = [
# Modules:
Expand Down
2 changes: 1 addition & 1 deletion extract_msg/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ def getCommandArgs(args) -> argparse.Namespace:
if options.outName and options.noFolders:
raise IncompatibleOptionsError('--out-name is not compatible with --no-folders.')

if options.dev or options.fileLogging:
if options.fileLogging:
options.verbose = options.verbose or 1

# Handle the wkOptions if they exist.
Expand Down

0 comments on commit 7e93f7b

Please sign in to comment.