Version bump to 1.3.1

Change-Id: Ia45c7b46ea45dee6f306afe291fe6a908eb41d70
This commit is contained in:
John Dickinson 2016-11-09 22:43:35 -08:00
parent d0cfa46390
commit 0a2c06b8b4
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Release 1.3.1
-------------
. Fixed the internal version number. It was inadvertently skipped in 1.3.0.
Release 1.3.0
-------------

View File

@ -26,8 +26,8 @@
#define _ERASURECODE_VERSION_H_
#define _MAJOR 1
#define _MINOR 2
#define _REV 0
#define _MINOR 3
#define _REV 1
#define _VERSION(x, y, z) ((x << 16) | (y << 8) | (z))
#define LIBERASURECODE_VERSION _VERSION(_MAJOR, _MINOR, _REV)