aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Leach <mike.leach@linaro.org>2020-08-28 00:13:11 +0100
committerMike Leach <mike.leach@linaro.org>2020-08-28 00:13:11 +0100
commit957d18219d162f52ebe2426f32a4263ec10f357d (patch)
tree594491b39febbe761c16ed13f08f3ca8936cfe8f
parente7240a4f817c8354dd379087574874c6e34b54aa (diff)
downloadOpenCSD-957d18219d162f52ebe2426f32a4263ec10f357d.tar.gz
opencsd: Update README and versions for v0.14.3
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 b8b13d5..2a77099 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.14.2_
+_Current Version 0.14.3_
### Current support:
@@ -211,6 +211,11 @@ Version and Modification Information
- __Bugfix__: I-decode: Some Thumb instructions not correctly reported as implied returns.
(github issue #24, submitted by kongy).
+- _Version 0.14.3_:
+ - __Update__: Fix makefile to be compliant with RPM base distros. (github issue #26, submitted by jlinton)
+ - __Update__: Add section to autofdo document.
+ - __Bugfix__: STM: fix bug that was missing ASYNC packets. (github issue #27, reported by subhasish Karmakar)
+
Licence Information
===================
diff --git a/decoder/docs/doxygen_config.dox b/decoder/docs/doxygen_config.dox
index 3913d3a..15cf781 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 = 0.14.2
+PROJECT_NUMBER = 0.14.3
# 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 38baa02..58eb4b5 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 0xE /**< Library Minor Version */
-#define OCSD_VER_PATCH 0x2 /**< Library Patch Version */
+#define OCSD_VER_PATCH 0x3 /**< 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.14.2" /**< Library Version string */
+#define OCSD_VER_STRING "0.14.3" /**< Library Version string */
#define OCSD_LIB_NAME "OpenCSD Library" /**< Library name string */
#define OCSD_LIB_SHORT_NAME "OCSD" /**< Library Short name string */
/** @}*/