aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Leach <mike.leach@linaro.org>2022-02-21 11:58:10 +0000
committerMike Leach <mike.leach@linaro.org>2022-02-21 11:58:10 +0000
commit539fea3eabd4ce7574494981cd3d0906cfdc5f18 (patch)
tree3f958d238ca950b17ce6fbd49b46622cb742f238
parent3fecfb03fbbf91d6e1aa0337400ea6a3bf6a7b42 (diff)
Update readme and version info for v1.2.1v1.2.1fix-mem-acc-context-1.2.1
Signed-off-by: Mike Leach <mike.leach@linaro.org>
-rw-r--r--README.md8
-rw-r--r--decoder/include/opencsd/ocsd_if_version.h4
2 files changed, 9 insertions, 3 deletions
diff --git a/README.md b/README.md
index 97b32edb6e67..8f147d220cb2 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.2.0_
+_Current Version 1.2.1_
### Current support:
@@ -258,6 +258,12 @@ Version and Modification Information
- __Bugfix__: Remove noisy printf (James Clark)
- __Bugfix__: Fix documentation issues (github issues #39 & #40 from rbresalier)
+- _Version 1.2.1_:
+ - __Bugfix__: ETM4x / ETE - output of context elements to client can in some circumstances
+ be delayed until after subsequent atoms have been processed leading to incorrect
+ memory decode access via the client callbacks.
+ Fixed to flush context elements immediately they are committed.
+
Licence Information
===================
diff --git a/decoder/include/opencsd/ocsd_if_version.h b/decoder/include/opencsd/ocsd_if_version.h
index d6f5849ab935..4a5ee7cc72dd 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 0x1 /**< Library Major Version */
#define OCSD_VER_MINOR 0x2 /**< 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 "1.2.0" /**< Library Version string */
+#define OCSD_VER_STRING "1.2.1" /**< Library Version string */
#define OCSD_LIB_NAME "OpenCSD Library" /**< Library name string */
#define OCSD_LIB_SHORT_NAME "OCSD" /**< Library Short name string */
/** @}*/