Signed-off-by: Mike Leach mike.leach@linaro.org --- README.md | 5 ++++- decoder/include/opencsd/ocsd_if_version.h | 6 +++--- 2 files changed, 7 insertions(+), 4 deletions(-)
diff --git a/README.md b/README.md index 1647112..c8a1697 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Releases will appear on the master branch in the git repository with an appropri CoreSight Trace Component Support. ----------------------------------
-_Current Version 1.1.1_ +_Current Version 1.2.0_
### Current support:
@@ -250,6 +250,9 @@ Version and Modification Information - _Version 1.1.1_: - __Bugfix__: Fix include and install for ETE decoder headers.
+- _Version 1.2.0_: + - __Update__: Add API for counting packet decode statistics. + Licence Information ===================
diff --git a/decoder/include/opencsd/ocsd_if_version.h b/decoder/include/opencsd/ocsd_if_version.h index ea2b239..d6f5849 100644 --- a/decoder/include/opencsd/ocsd_if_version.h +++ b/decoder/include/opencsd/ocsd_if_version.h @@ -43,8 +43,8 @@ /** @name Library Versioning @{*/ #define OCSD_VER_MAJOR 0x1 /**< Library Major Version */ -#define OCSD_VER_MINOR 0x1 /**< Library Minor Version */ -#define OCSD_VER_PATCH 0x1 /**< Library Patch Version */ +#define OCSD_VER_MINOR 0x2 /**< Library Minor Version */ +#define OCSD_VER_PATCH 0x0 /**< Library Patch Version */
/** Library version number - MMMMnnpp format. MMMM = major version, @@ -53,7 +53,7 @@ */ #define OCSD_VER_NUM ((OCSD_VER_MAJOR << 16) | (OCSD_VER_MINOR << 8) | OCSD_VER_PATCH)
-#define OCSD_VER_STRING "1.1.1" /**< Library Version string */ +#define OCSD_VER_STRING "1.2.0" /**< Library Version string */ #define OCSD_LIB_NAME "OpenCSD Library" /**< Library name string */ #define OCSD_LIB_SHORT_NAME "OCSD" /**< Library Short name string */ /** @}*/