diff --git a/oletools/oletimes.py b/oletools/oletimes.py index 3419b87..2fd196c 100755 --- a/oletools/oletimes.py +++ b/oletools/oletimes.py @@ -16,7 +16,7 @@ http://www.decalage.info/python/oletools #=== LICENSE ================================================================= -# oletimes is copyright (c) 2013-2015, Philippe Lagadec (http://www.decalage.info) +# oletimes is copyright (c) 2013-2016, Philippe Lagadec (http://www.decalage.info) # All rights reserved. # # Redistribution and use in source and binary forms, with or without modification, @@ -46,8 +46,9 @@ http://www.decalage.info/python/oletools # 2014-11-29 v0.02 PL: - use olefile instead of OleFileIO_PL # - improved usage display # 2014-11-30 v0.03 PL: - improved output with prettytable +# 2016-07-20 v0.50 SL: - added Python 3 support -__version__ = '0.03' +__version__ = '0.50' #------------------------------------------------------------------------------ # TODO: diff --git a/oletools/ppt_parser.py b/oletools/ppt_parser.py index 2f8ecd4..e89a037 100644 --- a/oletools/ppt_parser.py +++ b/oletools/ppt_parser.py @@ -25,8 +25,9 @@ References: # # CHANGELOG: # 2016-05-04 v0.01 CH: - start parsing "Current User" stream +# 2016-07-20 v0.50 SL: - added Python 3 support -__version__ = '0.02' +__version__ = '0.50' #--- IMPORTS ------------------------------------------------------------------