Commit d3b8857d68003a5f00e4b4d51b41c4d8f8375117

Authored by decalage2
1 parent e8b6dd46

bumped version to 0.54dev4

oletools/msodde.py
... ... @@ -89,7 +89,7 @@ from oletools.common.errors import FileIsEncryptedError
89 89 # 2018-09-11 v0.54 PL: - olefile is now a dependency
90 90 # 2018-10-25 CH: - detect encryption and raise error if detected
91 91  
92   -__version__ = '0.54dev1'
  92 +__version__ = '0.54dev4'
93 93  
94 94 # -----------------------------------------------------------------------------
95 95 # TODO: field codes can be in headers/footers/comments - parse these
... ...
oletools/oleid.py
... ... @@ -59,7 +59,7 @@ from __future__ import print_function
59 59 # 2018-10-19 CH: - accept olefile as well as filename, return Indicators,
60 60 # improve encryption detection for ppt
61 61  
62   -__version__ = '0.54dev1'
  62 +__version__ = '0.54dev4'
63 63  
64 64  
65 65 #------------------------------------------------------------------------------
... ...
oletools/olevba.py
... ... @@ -211,7 +211,7 @@ from __future__ import print_function
211 211 # 2018-10-08 PL: - replace backspace before printing to console (issue #358)
212 212 # 2018-10-25 CH: - detect encryption and raise error if detected
213 213  
214   -__version__ = '0.54dev2'
  214 +__version__ = '0.54dev4'
215 215  
216 216 #------------------------------------------------------------------------------
217 217 # TODO:
... ...
oletools/olevba3.py
... ... @@ -210,7 +210,7 @@ from __future__ import print_function
210 210 # 2018-09-11 v0.54 PL: - olefile is now a dependency
211 211 # 2018-10-25 CH: - detect encryption and raise error if detected
212 212  
213   -__version__ = '0.54dev1'
  213 +__version__ = '0.54dev4'
214 214  
215 215 #------------------------------------------------------------------------------
216 216 # TODO:
... ...
setup.py
... ... @@ -47,7 +47,7 @@ import os, fnmatch
47 47 #--- METADATA -----------------------------------------------------------------
48 48  
49 49 name = "oletools"
50   -version = '0.54dev3'
  50 +version = '0.54dev4'
51 51 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"
52 52 long_desc = open('oletools/README.rst').read()
53 53 author = "Philippe Lagadec"
... ...