xdc-D14
diff --git a/README b/README
index d63a98a..2acc0bc 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-             xdc-D13 (corevers:16.0.2.0; B:200,G:200,R:200)
+             xdc-D14 (corevers:16.0.2.0; B:200,G:200,R:200)
 
                        eXpanDed C Tools (XDCtools)
 
@@ -77,10 +77,19 @@
 
 CHANGES
 
-xdc.rov
-    Program.xs fixed to address SYSBIOS-371 and SYSBIOS-372
+core	    partially fixed XDCTOOLS-165 and ECL516749, for the use case where
+	    a spec file contains a vector in an internal state where the
+	    vector's type is not predefined. Here is an example:
+	    struct Instance_State {
+	        Int vect[length];
+	    }
+	    This should be enough to fix the IPC problem reported in
+	    XDCTOOLS-165. The other use case, where a vector type is predefined,
+	    is not fixed yet. Here is that other use case:
+	    typedef Int Vector[length];
+	    struct Instance_State {
+	        Vector vect;
+	    }
 
 MRS
 
-[SYSBIOS-371] Names missing in ROV for dynamic HeapMems
-[SYSBIOS-372] HeapMem's ROV is corrupted for multiple static creates
diff --git a/ident.c b/ident.c
index 42dfa03..c1fe6f7 100644
--- a/ident.c
+++ b/ident.c
@@ -2,7 +2,7 @@
  *  ======== ident.c ========
  */
 
-#define _VERS_ "@(#)*** xdc-D13"
+#define _VERS_ "@(#)*** xdc-D14"
 
 static char __NAME[] = _NAME_;
 static char __DATE[] = _DATE_;