]> mj.ucw.cz Git - libucw.git/commitdiff
Doc: Release notes for version 6.5
authorMartin Mares <mj@ucw.cz>
Fri, 17 Jul 2015 14:21:51 +0000 (16:21 +0200)
committerMartin Mares <mj@ucw.cz>
Fri, 17 Jul 2015 14:21:51 +0000 (16:21 +0200)
WWW/index.html
ucw/doc/index.txt
ucw/doc/relnotes.txt

index 6f95b348f68ce3a864cc68fceb7339bf8d377528..200fe8a6df469a13c959e882efffce72c56d1ecd 100644 (file)
@@ -50,7 +50,7 @@
                                        <li>Transactions and exceptions
                                        <li>Build system
                                        <li>Documentation system
-                                       <li>Companion libraries for charset conversion, loading of images, and XML parsing
+                                       <li>Companion libraries for charset conversion, loading of images, and parsing of JSON and XML
                                        <li>&hellip; and many more
                                </ul>
                        </div>
                                <p>
                                        If you use the library to your pleasure, the authors will be glad to hear that at the same address.
                        </div>
-                       <div class="section" id="addlib"><h2>Extra libraries</h2>
+                       <div class="section" id="addlib"><h2>Companion libraries</h2>
                                <p>
-                                       The package also contains several other libraries from the Sherlock Holmes project, which you might find useful.
-                                       So far, they are completely optional and not much documented.
+                                       LibUCW is accompanied by several other libraries, which you might find useful.
                                <ul>
-                                       <li><strong>libucw-charset</strong> &ndash; manipulation of character sets and UniCode categories
-                                       <li><strong>libucw-images</strong> &ndash; manipulation of images
+                                       <li><strong>libucw-json</strong> &ndash; a flexible JSON parser and formatter
                                        <li><strong>libucw-xml</strong> &ndash; a lightning fast and flexible XML parser
+                                       <li><strong>libucw-charset</strong> &ndash; manipulation of character sets and UniCode categories [experimental]
+                                       <li><strong>libucw-images</strong> &ndash; manipulation of images [experimental]
                                </ul>
                        </div>
                </div>
index b6db32026e4b6f4a7b5717a8b7eb2bbe9e64bf7b..d761e34de01e4328c9f188764feae2d26ccb5bef 100644 (file)
@@ -90,6 +90,7 @@ Yet undocumented modules
 
 Companion libraries
 -------------------
+- <<../ucw-json/index:,LibUCW-JSON>> -- a JSON parser and formatter
 - <<../ucw-xml/index:,LibUCW-XML>> -- a XML parser
 - LibUCW-charset -- character set conversion (undocumented)
 - LibUCW-images -- loading and conversion of images (undocumented)
index 1098499e800104478be46ba51650e1d5e59dab37..2b6a0292b4daba8a74608b7c95b36f680e5f2207 100644 (file)
@@ -1,8 +1,15 @@
 Release notes
 =============
 
-FIXME
------
+6.5 (2015-07-17)
+----------------
+* Added companion library <<../ucw-json/index:,LibUCW-JSON>> for parsing
+  and formatting JSON.
+* Fastbufs have a new wrapper for parsing and generating hex-dumps.
+  Useful primarily for debugging.
+* Unicode functions are now more strict and they reject denormalized
+  UTF-8 sequences. Also, it is now possible to append UTF-8 characters
+  to a memory pool.
 * The naming of memory pool functions mp_append_printf() and mp_append_vprintf()
   turned out to be unfortunate as they have differently from all other functions
   operating on growing buffers. They have been renamed to mp_printf_append()