From 7ce1d0e1d017abf67137247c0c28f8cb45984bf4 Mon Sep 17 00:00:00 2001 From: Daniel Parker Date: Sat, 7 Nov 2015 23:21:40 -0500 Subject: [PATCH] Updates to docs --- Changelog.html | 10 +++++++--- README.html | 10 +++++++--- README.md | 3 ++- src/doc/Changelog.md | 11 +++++++---- 4 files changed, 23 insertions(+), 11 deletions(-) diff --git a/Changelog.html b/Changelog.html index b7de3035c2..e83bdd672e 100644 --- a/Changelog.html +++ b/Changelog.html @@ -468,11 +468,15 @@ -

Target 0.98.1 Release

+

0.98.1 Release

0.98 Release

diff --git a/README.html b/README.html index 619d9a2d6c..1080d97fa3 100644 --- a/README.html +++ b/README.html @@ -498,11 +498,15 @@

jsoncons: a C++ library for json construction

  • Handles JSON texts of arbitrarily large depth, a limit can be set if desired
  • -

    What's new on master

    +

    What's new in 0.98.1 Release

    Using the jsoncons library

    diff --git a/README.md b/README.md index 33736c6153..09e6efd7f7 100644 --- a/README.md +++ b/README.md @@ -25,12 +25,13 @@ The library has a number of features, which are listed below: - 100 percent pass of test suite files from http://www.json.org/JSON_checker/ - Handles JSON texts of arbitrarily large depth, a limit can be set if desired -## What's new on master +## What's new in 0.98.1 Release - Enhances parser for CSV files that outputs JSON, see example below. - Adds `get_result` member function to `json_deserializer`, which returns the json value `v` stored in a `json_deserializer` as `std::move(v)`. The `root()` member function has been deprecated but is still supported. - Adds `is_valid` member function to `json_deserializer` - Enhances json::any class, adds type checks when casting back to original value +- Fixes some warning messages ## Using the jsoncons library diff --git a/src/doc/Changelog.md b/src/doc/Changelog.md index 1f356f513f..30420e3e9d 100644 --- a/src/doc/Changelog.md +++ b/src/doc/Changelog.md @@ -1,8 +1,11 @@ -Target 0.98.1 Release ---------------------- +0.98.1 Release +-------------- -- Enhancements to processing CSV files to output JSON -- The json value `v` stored in a `json_deserializer` is now retrieved by calling the member function `get_result`, which returns it as `std::move(v)`. +- Enhances parser for CSV files that outputs JSON, see example below. +- Adds `get_result` member function to `json_deserializer`, which returns the json value `v` stored in a `json_deserializer` as `std::move(v)`. The `root()` member function has been deprecated but is still supported. +- Adds `is_valid` member function to `json_deserializer` +- Enhances json::any class, adds type checks when casting back to original value +- Fixes some warning messages 0.98 Release --------------