aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Leach <mike.leach@linaro.org>2024-03-28 17:04:02 +0000
committerMike Leach <mike.leach@linaro.org>2024-04-03 11:59:59 +0100
commit5d86f27a8c0af16a473833da3a0936cd2a0999d3 (patch)
treea70738de6225c7cc51924a6825d010f5ff837660
parent71c50dda716f8d051f05d53df12f2f4ac4bb759c (diff)
opencsd: Update version info and README for 1.5.2v1.5.2ocsd-main
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 f9cbbf700eea..352e86590b86 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.5.1_
+_Current Version 1.5.2_
### Current support:
@@ -320,6 +320,11 @@ Version and Modification Information
- __Update__: ETE: Add support for Arch 9.5 FEAT_PAUTH_LR. Add new instructions to disassembler to
recognise RETA<k>SPPC variants as indirect branches. Adds new test snapshots.
+- _Version 1.5.2_:
+ - __Update__: docs: Update documentation for test programs.
+ - __Update__: docs: Update trc_pkt_lister man file.
+ - __Bugfix__: build: fix warnings building library.
+ - __Bugfix__: tests: Fix typo in trc_pkt_lister help output.
Licence Information
===================
diff --git a/decoder/docs/doxygen_config.dox b/decoder/docs/doxygen_config.dox
index bb6e2e622c74..8aa6ea815be6 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.5.1
+PROJECT_NUMBER = 1.5.2
# 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 a1132bc18dc8..284eec3a9463 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 0x5 /**< Library Minor Version */
-#define OCSD_VER_PATCH 0x1 /**< Library Patch Version */
+#define OCSD_VER_PATCH 0x2 /**< 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.5.1" /**< Library Version string */
+#define OCSD_VER_STRING "1.5.2" /**< Library Version string */
#define OCSD_LIB_NAME "OpenCSD Library" /**< Library name string */
#define OCSD_LIB_SHORT_NAME "OCSD" /**< Library Short name string */
/** @}*/