Skip to content

Commit

Permalink
Changed the version number
Browse files Browse the repository at this point in the history
Made the version number compatible with the Major.Minor.Patch
specification.
  • Loading branch information
bontchev committed Oct 9, 2016
1 parent d1b9ed3 commit adb65ab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion pcodedmp.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

__author__ = 'Vesselin Bontchev <[email protected]>'
__license__ = 'GPL'
__VERSION__ = '2.00'
__VERSION__ = '1.1.0'

def getWord(buffer, offset, endian):
return unpack_from(endian + 'H', buffer, offset)[0]
Expand Down

0 comments on commit adb65ab

Please sign in to comment.