Commit ae4f18828aed9fe0f9d5f56e82ada90b1984af20

Authored by decalage2
1 parent 7f19e632

msodde: updated version after PR #275

oletools/msodde.py
... ... @@ -92,8 +92,9 @@ from oletools import rtfobj
92 92 # 2018-01-05 CH: - add CSV
93 93 # 2018-01-11 PL: - fixed issue #242 (apply unquote to fldSimple tags)
94 94 # 2018-01-10 CH: - add single-xml files (Word 2003/2007+ / Excel 2003)
  95 +# 2018-03-21 CH: - added detection for various CSV formulas (issue #259)
95 96  
96   -__version__ = '0.52'
  97 +__version__ = '0.53dev10'
97 98  
98 99 # -----------------------------------------------------------------------------
99 100 # TODO: field codes can be in headers/footers/comments - parse these
... ...
setup.py
... ... @@ -43,7 +43,7 @@ import os, fnmatch
43 43 #--- METADATA -----------------------------------------------------------------
44 44  
45 45 name = "oletools"
46   -version = '0.53dev9'
  46 +version = '0.53dev10'
47 47 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"
48 48 long_desc = open('oletools/README.rst').read()
49 49 author = "Philippe Lagadec"
... ...