opencsd: Update README and version for v1.8.3

Signed-off-by: Mike Leach <mike.leach@arm.com>
diff --git a/README.md b/README.md
index 764b2c9..ba46c7c 100644
--- a/README.md
+++ b/README.md
@@ -27,7 +27,7 @@
 CoreSight Trace Component Support.
 ----------------------------------
 
-_Current Version 1.8.2_
+_Current Version 1.8.3_
 
 ### Current support:
 
@@ -383,7 +383,7 @@
     - __Bugfix__: etmv4: Packet description string typo fixed. (github #84)
     - __Bugfix__: stm: Issue with waitASync routine (github #85), fix freq packet handling
 
-- _Version 1.8.2:
+- _Version 1.8.2_:
     - __Update__: tests: add python test script for cross platform use - replace linux only bash scripts.
     - __Update__: opencsd: memory access - added debug to trace memory accesses by library under control of env var.
     - __Bugfix__: tests: windows test program names differ from linux ones - fix to make same
@@ -392,7 +392,17 @@
                   issues. (github #88)
     - __Bugfix__: Fix mac-os build for test programs.
 
-     
+- _Version 1.8.3_:
+    - __Update__: build: Experimental cmake build files. (github #89)
+    - __Update__: build: Unix build - option to create non-versioned, statically linked c-api .so for 
+                  distribution as part of a larger product. Will not install (github #91)
+    - __Bugfix__: opencsd: etm4: Fix issue with M profile exception return packets - handle as 
+                  P0 element for all M archs. (github #90)
+    - __Bugfix__: opencsd: ete: etm4: TS marker packets valid in both protocols. Ensure invalid if not
+                  in use as defined by ID register.
+    - __Bugfix__: opencsd: etm4: Fix handling of exception return address in middle of 
+                  part executed instruction. (github #92)  
+
 Licence Information
 ===================
 
diff --git a/decoder/docs/doxygen_config.dox b/decoder/docs/doxygen_config.dox
index defa8cf..5436119 100644
--- a/decoder/docs/doxygen_config.dox
+++ b/decoder/docs/doxygen_config.dox
@@ -38,7 +38,7 @@
 # could be handy for archiving the generated documentation or if some version
 # control system is used.
 
-PROJECT_NUMBER         = 1.8.2
+PROJECT_NUMBER         = 1.8.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 8347567..b1f95d4 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 0x8 /**< 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 "1.8.2"    /**< Library Version string */
+#define OCSD_VER_STRING "1.8.3"          /**< Library Version string */
 #define OCSD_LIB_NAME "OpenCSD Library"  /**< Library name string */
 #define OCSD_LIB_SHORT_NAME "OCSD"       /**< Library Short name string */
 /** @}*/