diff --git a/oletools/olevba.py b/oletools/olevba.py index e413d02..fbd65be 100644 --- a/oletools/olevba.py +++ b/oletools/olevba.py @@ -32,7 +32,7 @@ https://github.com/unixfreak0037/officeparser # === LICENSE ================================================================== -# olevba is copyright (c) 2014-2020 Philippe Lagadec (http://www.decalage.info) +# olevba is copyright (c) 2014-2021 Philippe Lagadec (http://www.decalage.info) # All rights reserved. # # Redistribution and use in source and binary forms, with or without modification, @@ -234,7 +234,7 @@ from __future__ import print_function # 2020-09-28 PL: - added VBA_Parser.get_vba_code_all_modules (partial fix # for issue #619) -__version__ = '0.56.1.dev2' +__version__ = '0.56.1' #------------------------------------------------------------------------------ # TODO: diff --git a/setup.py b/setup.py index 611d205..7c4486d 100644 --- a/setup.py +++ b/setup.py @@ -52,7 +52,7 @@ import os, fnmatch #--- METADATA ----------------------------------------------------------------- name = "oletools" -version = '0.56.1.dev2' +version = '0.56.1' 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"