From adb65ab79c14bc82f0ce1d4e4a98fb859f1ecc9a Mon Sep 17 00:00:00 2001 From: Vesselin Bontchev Date: Sun, 9 Oct 2016 16:57:22 +0300 Subject: [PATCH] Changed the version number Made the version number compatible with the Major.Minor.Patch specification. --- README.md | 4 ++-- pcodedmp.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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]