aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Leach <mike.leach@linaro.org>2022-05-05 12:14:26 +0100
committerMike Leach <mike.leach@linaro.org>2022-05-05 12:17:09 +0100
commit8dab50c35c8d181fc3ed6ad46e156398447d753f (patch)
tree2139cc7e0bfcd6d265843119fa9e7eeab895d01e
parent91332dc8b73486d93c8c6e0bdbf96d7ef97eb02b (diff)
opencsd: Update README and version info for 1.3.1v1.3.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 daf77a207a58..1c25cc6884e1 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.3.0_
+_Current Version 1.3.1_
### Current support:
@@ -269,6 +269,11 @@ Version and Modification Information
- __Update__: Add support for conditional branch (BC.cond) introduced for v8.8 / v9.3 architecture.
- __Update__: ETE: Add support for NSE bit - security state bit defining Root / Realm states in FEAT_RME.
+- _Version 1.3.1_:
+ - __Bugfix__: Add header file in snapshot parser - fix build for certain libc++ libs (github issue #43 from manojgupta)
+ - __Bugfix__: Fix typo in comment (github issue #42 from nothatDinger)
+
+
Licence Information
===================
diff --git a/decoder/docs/doxygen_config.dox b/decoder/docs/doxygen_config.dox
index a1e780cec08a..5ec34540afca 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.3.0
+PROJECT_NUMBER = 1.3.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 3706ce91a70d..32d5e14b0597 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 0x3 /**< 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.3.0" /**< Library Version string */
+#define OCSD_VER_STRING "1.3.1" /**< Library Version string */
#define OCSD_LIB_NAME "OpenCSD Library" /**< Library name string */
#define OCSD_LIB_SHORT_NAME "OCSD" /**< Library Short name string */
/** @}*/