Skip to content

Commit fd1dc92

Browse files
committed
opencsd: Update README and version for v1.8.3-rc1
Signed-off-by: Mike Leach <mike.leach@arm.com>
1 parent 8e64acf commit fd1dc92

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Releases will appear on the master branch in the git repository with an appropri
2727
CoreSight Trace Component Support.
2828
----------------------------------
2929

30-
_Current Version 1.8.2_
30+
_Current Version 1.8.3-rc1_
3131

3232
### Current support:
3333

@@ -383,7 +383,7 @@ Version and Modification Information
383383
- __Bugfix__: etmv4: Packet description string typo fixed. (github #84)
384384
- __Bugfix__: stm: Issue with waitASync routine (github #85), fix freq packet handling
385385

386-
- _Version 1.8.2:
386+
- _Version 1.8.2_:
387387
- __Update__: tests: add python test script for cross platform use - replace linux only bash scripts.
388388
- __Update__: opencsd: memory access - added debug to trace memory accesses by library under control of env var.
389389
- __Bugfix__: tests: windows test program names differ from linux ones - fix to make same
@@ -392,6 +392,8 @@ Version and Modification Information
392392
issues. (github #88)
393393
- __Bugfix__: Fix mac-os build for test programs.
394394

395+
- _Version 1.8.3-rc1_:
396+
- __Update__: build: Experimental cmake build files. (github #89)
395397

396398
Licence Information
397399
===================

decoder/docs/doxygen_config.dox

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "OpenCSD - CoreSight Trace Decode Library"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 1.8.2
41+
PROJECT_NUMBER = 1.8.3-rc1
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

decoder/include/opencsd/ocsd_if_version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
@{*/
4545
#define OCSD_VER_MAJOR 0x1 /**< Library Major Version */
4646
#define OCSD_VER_MINOR 0x8 /**< Library Minor Version */
47-
#define OCSD_VER_PATCH 0x2 /**< Library Patch Version */
47+
#define OCSD_VER_PATCH 0xF3 /**< Library Patch Version */
4848

4949
/** Library version number - MMMMnnpp format.
5050
MMMM = major version,
@@ -53,7 +53,7 @@
5353
*/
5454
#define OCSD_VER_NUM ((OCSD_VER_MAJOR << 16) | (OCSD_VER_MINOR << 8) | OCSD_VER_PATCH)
5555

56-
#define OCSD_VER_STRING "1.8.2" /**< Library Version string */
56+
#define OCSD_VER_STRING "1.8.3-rc1" /**< Library Version string */
5757
#define OCSD_LIB_NAME "OpenCSD Library" /**< Library name string */
5858
#define OCSD_LIB_SHORT_NAME "OCSD" /**< Library Short name string */
5959
/** @}*/

0 commit comments

Comments
 (0)