aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Leach <mike.leach@linaro.org>2018-11-29 14:40:14 +0000
committerMike Leach <mike.leach@linaro.org>2018-11-29 14:40:14 +0000
commit7b3010fb7619f28a11867f1e97d5f5eed3bcacf7 (patch)
treef135651e262e1749fd948cc625af32bcdc20718f
parentd39a1473a10b1b744bace77780a67aa41e24941b (diff)
opencsd: Update README and version for v0.10.1v0.10.1
Signed-off-by: Mike Leach <mike.leach@linaro.org>
-rw-r--r--README.md4
-rw-r--r--decoder/include/opencsd/ocsd_if_version.h4
2 files changed, 5 insertions, 3 deletions
diff --git a/README.md b/README.md
index 22e4f0a96492..98ad732a6fa6 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.10.0_
+_Current Version 0.10.1_
### Current support:
@@ -146,6 +146,8 @@ Version and Modification Information
__Docs__: update docs for updated output packet.
__Bugfix__: typecast removed from OCSD_VER_NUM in ocsd_if_version.h to allow use in C pre-processor.
__Bugfix__: ETMV4: Interworking ISA change between A32-T32 occasionally missed during instruction decode.
+- _Version 0.10.1_: __Updates__: Build update - allow multi-thread make (make -j<N>).
+ __Docs__: Minor update to AutoFDO documentation.
Licence Information
diff --git a/decoder/include/opencsd/ocsd_if_version.h b/decoder/include/opencsd/ocsd_if_version.h
index 62a8c909e57f..91ad4d7d78cb 100644
--- a/decoder/include/opencsd/ocsd_if_version.h
+++ b/decoder/include/opencsd/ocsd_if_version.h
@@ -44,7 +44,7 @@
@{*/
#define OCSD_VER_MAJOR 0x0 /**< Library Major Version */
#define OCSD_VER_MINOR 0xA /**< Library Minor Version */
-#define OCSD_VER_PATCH 0x0 /**< Library Patch Version */
+#define OCSD_VER_PATCH 0x1 /**< 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 "0.10.0" /**< Library Version string */
+#define OCSD_VER_STRING "0.10.1" /**< Library Version string */
#define OCSD_LIB_NAME "OpenCSD Library" /**< Library name string */
#define OCSD_LIB_SHORT_NAME "OCSD" /**< Library Short name string */
/** @}*/