Commit 50ec5ee62ada83c8d81ebe2e984e253509e744e1

Authored by decalage2
1 parent 766a3b74

rtfobj: bumped version to 0.55.dev3

oletools/rtfobj.py
... ... @@ -88,8 +88,10 @@ http://www.decalage.info/python/oletools
88 88 # 2018-05-31 v0.53.1 PP: - fixed issue #316: whitespace after \bin on Python 3
89 89 # 2018-06-22 v0.53.2 PL: - fixed issue #327: added "\pnaiu" & "\pnaiud"
90 90 # 2018-09-11 v0.54 PL: - olefile is now a dependency
  91 +# 2019-07-08 v0.55 MM: - added URL carver for CVE-2017-0199 (Equation Editor) PR #460
  92 +# - added SCT to the list of executable file extensions PR #461
91 93  
92   -__version__ = '0.54'
  94 +__version__ = '0.55.dev3'
93 95  
94 96 # ------------------------------------------------------------------------------
95 97 # TODO:
... ...
setup.py
... ... @@ -50,7 +50,7 @@ import os, fnmatch
50 50 #--- METADATA -----------------------------------------------------------------
51 51  
52 52 name = "oletools"
53   -version = '0.55.dev2'
  53 +version = '0.55.dev3'
54 54 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"
55 55 long_desc = open('oletools/README.rst').read()
56 56 author = "Philippe Lagadec"
... ...