aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Leach <mike.leach@linaro.org>2023-08-17 14:46:50 +0100
committerMike Leach <mike.leach@linaro.org>2023-08-17 15:31:19 +0100
commit553d74524332be146675980ef611153d1a1ab6f8 (patch)
tree1828ed7712d8c9289a784626f31e670d7c64582a
parentc1556df749120a1b941f5e5cff27bfee1ba36c9d (diff)
opencsd: Update version info and README for 1.4.1v1.4.1
Signed-off-by: Mike Leach <mike.leach@linaro.org>
-rw-r--r--README.md7
-rw-r--r--decoder/docs/doxygen_config.dox2
-rw-r--r--decoder/include/opencsd/ocsd_if_version.h4
3 files changed, 9 insertions, 4 deletions
diff --git a/README.md b/README.md
index 450c8e3e53b8..ec880be50168 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.4.0_
+_Current Version 1.4.1_
### Current support:
@@ -291,6 +291,11 @@ Version and Modification Information
Adds in new generic output packet type: OCSD_GEN_TRC_ELEM_INSTRUMENTATION.
- __Bugfix__: Fix memory leak in mispredict handling (github issue #52 from yabinc)
+_Version 1.4.1_:
+ - __Update__: Test: Update test program trc_pkt_lister with option to have no logging output - final stats only.
+ - __Bugfix__: ETM4x: ETE: Fix memory leak / use after free (github issues #53, #58 from yabinc)
+ - __Bugfix__: C-API: Fix memory leak with output sink object. (github issue #55)
+
Licence Information
===================
diff --git a/decoder/docs/doxygen_config.dox b/decoder/docs/doxygen_config.dox
index 7590e47a7561..06ad0748c3cf 100644
--- a/decoder/docs/doxygen_config.dox
+++ b/decoder/docs/doxygen_config.dox
@@ -38,7 +38,7 @@ PROJECT_NAME = "OpenCSD - CoreSight Trace Decode Library"
# could be handy for archiving the generated documentation or if some version
# control system is used.
-PROJECT_NUMBER = 1.4.0
+PROJECT_NUMBER = 1.4.1
# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
diff --git a/decoder/include/opencsd/ocsd_if_version.h b/decoder/include/opencsd/ocsd_if_version.h
index 41033f0675ed..cefbe6b1e842 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 0x4 /**< 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.4.0" /**< Library Version string */
+#define OCSD_VER_STRING "1.4.1" /**< Library Version string */
#define OCSD_LIB_NAME "OpenCSD Library" /**< Library name string */
#define OCSD_LIB_SHORT_NAME "OCSD" /**< Library Short name string */
/** @}*/