diff --git a/README.md b/README.md index 9eaa0cb..7a80434 100644 --- a/README.md +++ b/README.md @@ -77,6 +77,6 @@ For reference, it is the result of compiling the following VBA code: ## Change log -Version 1.00: Initial version. +Version 1.0.0: Initial version. -Version 2.00: Storing the opcodes in a more efficient manner. Implemented VBA7 support. Implemented support for documents created by the 64-bit version of Office. +Version 1.1.0: Storing the opcodes in a more efficient manner. Implemented VBA7 support. Implemented support for documents created by the 64-bit version of Office. diff --git a/pcodedmp.py b/pcodedmp.py index e977628..ada03ee 100644 --- a/pcodedmp.py +++ b/pcodedmp.py @@ -10,7 +10,7 @@ __author__ = 'Vesselin Bontchev ' __license__ = 'GPL' -__VERSION__ = '2.00' +__VERSION__ = '1.1.0' def getWord(buffer, offset, endian): return unpack_from(endian + 'H', buffer, offset)[0]