From 631a172e4325278991c5955699b575569296f6f5 Mon Sep 17 00:00:00 2001 From: decalage2 Date: Tue, 3 Dec 2019 23:45:58 +0100 Subject: [PATCH] bumped version to 0.55 --- oletools/crypto.py | 2 +- oletools/mraptor.py | 2 +- oletools/msodde.py | 2 +- oletools/olemap.py | 2 +- oletools/oleobj.py | 2 +- oletools/rtfobj.py | 2 +- setup.py | 3 ++- 7 files changed, 8 insertions(+), 7 deletions(-) diff --git a/oletools/crypto.py b/oletools/crypto.py index 74956ac..be732ee 100644 --- a/oletools/crypto.py +++ b/oletools/crypto.py @@ -94,7 +94,7 @@ http://www.decalage.info/python/oletools # 2019-04-01 v0.54 PL: - fixed bug in is_encrypted_ole # 2019-05-23 PL: - added DEFAULT_PASSWORDS list -__version__ = '0.54.2' +__version__ = '0.55' import sys import struct diff --git a/oletools/mraptor.py b/oletools/mraptor.py index 10e66a9..4a4b741 100644 --- a/oletools/mraptor.py +++ b/oletools/mraptor.py @@ -61,7 +61,7 @@ http://www.decalage.info/python/oletools # 2019-04-04 v0.54 PL: - added ExecuteExcel4Macro, ShellExecuteA, XLM keywords # 2019-11-06 v0.55 PL: - added SetTimer -__version__ = '0.55.dev5' +__version__ = '0.55' #------------------------------------------------------------------------------ # TODO: diff --git a/oletools/msodde.py b/oletools/msodde.py index 94eb047..303d974 100644 --- a/oletools/msodde.py +++ b/oletools/msodde.py @@ -103,7 +103,7 @@ from oletools.common.log_helper import log_helper # 2019-07-17 v0.55 CH: - fixed issue #267, unicode error on Python 2 -__version__ = '0.55.dev3' +__version__ = '0.55' # ----------------------------------------------------------------------------- # TODO: field codes can be in headers/footers/comments - parse these diff --git a/oletools/olemap.py b/oletools/olemap.py index 5460a54..fc6a835 100644 --- a/oletools/olemap.py +++ b/oletools/olemap.py @@ -54,7 +54,7 @@ http://www.decalage.info/python/oletools # 2018-08-28 v0.54 PL: - olefile is now a dependency # 2019-07-10 v0.55 PL: - fixed display of OLE header CLSID (issue #394) -__version__ = '0.55.dev3' +__version__ = '0.55' #------------------------------------------------------------------------------ # TODO: diff --git a/oletools/oleobj.py b/oletools/oleobj.py index 3abe017..d18c1e4 100644 --- a/oletools/oleobj.py +++ b/oletools/oleobj.py @@ -87,7 +87,7 @@ from oletools.common.io_encoding import ensure_stdout_handles_unicode # 2018-09-11 v0.54 PL: - olefile is now a dependency # 2018-10-30 SA: - added detection of external links (PR #317) -__version__ = '0.55dev5' +__version__ = '0.55' # ----------------------------------------------------------------------------- # TODO: diff --git a/oletools/rtfobj.py b/oletools/rtfobj.py index 4f4176b..59d5008 100644 --- a/oletools/rtfobj.py +++ b/oletools/rtfobj.py @@ -91,7 +91,7 @@ http://www.decalage.info/python/oletools # 2019-07-08 v0.55 MM: - added URL carver for CVE-2017-0199 (Equation Editor) PR #460 # - added SCT to the list of executable file extensions PR #461 -__version__ = '0.55.dev3' +__version__ = '0.55' # ------------------------------------------------------------------------------ # TODO: diff --git a/setup.py b/setup.py index fc5c465..aafaa49 100644 --- a/setup.py +++ b/setup.py @@ -52,7 +52,7 @@ import os, fnmatch #--- METADATA ----------------------------------------------------------------- name = "oletools" -version = '0.55.dev5' +version = '0.55' desc = "Python tools to analyze security characteristics of MS Office and OLE files (also called Structured Storage, Compound File Binary Format or Compound Document File Format), for Malware Analysis and Incident Response #DFIR" long_desc = open('oletools/README.rst').read() author = "Philippe Lagadec" @@ -79,6 +79,7 @@ classifiers=[ "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", "Topic :: Security", "Topic :: Software Development :: Libraries :: Python Modules", ] -- libgit2 0.21.4