diff --git a/oletools/rtfobj.py b/oletools/rtfobj.py index 5faad07..4f4176b 100644 --- a/oletools/rtfobj.py +++ b/oletools/rtfobj.py @@ -88,8 +88,10 @@ http://www.decalage.info/python/oletools # 2018-05-31 v0.53.1 PP: - fixed issue #316: whitespace after \bin on Python 3 # 2018-06-22 v0.53.2 PL: - fixed issue #327: added "\pnaiu" & "\pnaiud" # 2018-09-11 v0.54 PL: - olefile is now a dependency +# 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.54' +__version__ = '0.55.dev3' # ------------------------------------------------------------------------------ # TODO: diff --git a/setup.py b/setup.py index 1f44ad3..2c45c76 100644 --- a/setup.py +++ b/setup.py @@ -50,7 +50,7 @@ import os, fnmatch #--- METADATA ----------------------------------------------------------------- name = "oletools" -version = '0.55.dev2' +version = '0.55.dev3' 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"