aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Leach <mike.leach@linaro.org>2017-12-12 15:21:36 +0000
committerMike Leach <mike.leach@linaro.org>2017-12-15 11:27:04 +0000
commit6f7e9cc0b564b2b80fbef464a919a55198243885 (patch)
tree64c5bd80aa15bed00dfd3e5385bf50bf64f7451a
parent52d11054ea3b9f0b0d47147e1291473368b70ad0 (diff)
opencsd: Version and doc updates for v0.8.0v0.8
Signed-off-by: Mike Leach <mike.leach@linaro.org>
-rw-r--r--README.md4
-rw-r--r--decoder/include/ocsd_if_version.h6
2 files changed, 6 insertions, 4 deletions
diff --git a/README.md b/README.md
index 4924d394e840..2c539a37a555 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 0.7.5_
+_Current Version 0.8.0_
### Current support:
@@ -112,6 +112,8 @@ Version and Modification Information
- _Version 0.7.3_: Bugfix: PTM decoder - issues with initialisation and ASYNC detection.
- _Version 0.7.4_: Notification of change of repository for perf extensions. gcc 6.x build fixes.
- _Version 0.7.5_: Bugfix: ETMv4 decoder memory leak. Linux build update - header dependencies force rebuild.
+- _Version 0.8.0_: Header restructure and build update to enable linux version to install library and C-API headers in standard locations.
+ Library output naming changed from 'cstraced' to 'opencsd'.
Licence Information
===================
diff --git a/decoder/include/ocsd_if_version.h b/decoder/include/ocsd_if_version.h
index 1a427ae95601..35f19d9e1a6b 100644
--- a/decoder/include/ocsd_if_version.h
+++ b/decoder/include/ocsd_if_version.h
@@ -43,8 +43,8 @@
/** @name Library Versioning
@{*/
#define OCSD_VER_MAJOR 0x0 /**< Library Major Version */
-#define OCSD_VER_MINOR 0x7 /**< Library Minor Version */
-#define OCSD_VER_PATCH 0x5 /**< Library Patch Version */
+#define OCSD_VER_MINOR 0x8 /**< 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 (((uint32_t)OCSD_VER_MAJOR << 16) | ((uint32_t)OCSD_VER_MINOR << 8) | ((uint32_t)OCSD_VER_PATCH))
-#define OCSD_VER_STRING "0.7.5" /**< Library Version string */
+#define OCSD_VER_STRING "0.8.0" /**< Library Version string */
#define OCSD_LIB_NAME "OpenCSD Library" /**< Library name string */
#define OCSD_LIB_SHORT_NAME "OCSD" /**< Library Short name string */
/** @}*/