comments only -- fill in some of the change history
diff --git a/inc/qcbor.h b/inc/qcbor.h
index 54ff6dd..bf7f55a 100644
--- a/inc/qcbor.h
+++ b/inc/qcbor.h
@@ -47,6 +47,8 @@
  11/9/18            llundblade      Error codes are now enums.
  11/1/18            llundblade      Floating support.
  10/31/18           llundblade      Switch to one license that is almost BSD-3.
+ 10/15/18           llundblade      Indefinite length maps and arrays supported
+ 10/8/18            llundblade      Indefinite length strings supported
  09/28/18           llundblade      Added bstr wrapping feature for COSE implementation.
  07/05/17           llundbla        Add bstr wrapping of maps/arrays for COSE.
  03/01/17           llundbla        More data types; decoding improvements and fixes.
diff --git a/src/qcbor_decode.c b/src/qcbor_decode.c
index 5614fb0..8eaeb43 100644
--- a/src/qcbor_decode.c
+++ b/src/qcbor_decode.c
@@ -42,6 +42,13 @@
  
  when               who             what, where, why
  --------           ----            ---------------------------------------------------
+ 11/9/18            llundblade      Error codes are now enums.
+ 11/2/18            llundblade      Simplify float decoding and align with preferred
+                                    float encoding
+ 10/31/18           llundblade      Switch to one license that is almost BSD-3.
+ 10/28/18           llundblade      Reworked tag decoding
+ 10/15/18           llundblade      Indefinite length maps and arrays supported
+ 10/8/18            llundblade      Indefinite length strings supported
  02/04/17           llundbla        Work on CPUs that don's require pointer alignment
                                     by making use of changes in UsefulBuf
  03/01/17           llundbla        More data types; decoding improvements and fixes