Skip to content

Commit

Permalink
Updates to docs
Browse files Browse the repository at this point in the history
  • Loading branch information
danielaparker committed Nov 8, 2015
1 parent 50e1802 commit 7ce1d0e
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 11 deletions.
10 changes: 7 additions & 3 deletions Changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -468,11 +468,15 @@
</style>
</head>
<body>
<h2>Target 0.98.1 Release</h2>
<h2>0.98.1 Release</h2>

<ul>
<li>Enhancements to processing CSV files to output JSON </li>
<li>The json value <code>v</code> stored in a <code>json_deserializer</code> is now retrieved by calling the member function <code>get_result</code>, which returns it as <code>std::move(v)</code>. </li>
<li>Enhances parser for CSV files that outputs JSON, see example below. </li>
<li>Adds <code>get_result</code> member function to <code>json_deserializer</code>, which returns the json value <code>v</code> stored in a <code>json_deserializer</code> as <code>std::move(v)</code>. The <code>root()</code> member function has been deprecated but is still supported.</li>
<li>Adds <code>is_valid</code> member function to <code>json_deserializer</code>
</li>
<li>Enhances json::any class, adds type checks when casting back to original value</li>
<li>Fixes some warning messages</li>
</ul>

<h2>0.98 Release</h2>
Expand Down
10 changes: 7 additions & 3 deletions README.html
Original file line number Diff line number Diff line change
Expand Up @@ -498,11 +498,15 @@ <h1>jsoncons: a C++ library for json construction</h1>
<li>Handles JSON texts of arbitrarily large depth, a limit can be set if desired</li>
</ul>

<h2>What's new on master</h2>
<h2>What's new in 0.98.1 Release</h2>

<ul>
<li>Enhancements to processing CSV files to output JSON, see example below. </li>
<li>The json value <code>v</code> stored in a <code>json_deserializer</code> is now retrieved by calling the member function <code>get_result</code>, which returns it as <code>std::move(v)</code>. </li>
<li>Enhances parser for CSV files that outputs JSON, see example below. </li>
<li>Adds <code>get_result</code> member function to <code>json_deserializer</code>, which returns the json value <code>v</code> stored in a <code>json_deserializer</code> as <code>std::move(v)</code>. The <code>root()</code> member function has been deprecated but is still supported.</li>
<li>Adds <code>is_valid</code> member function to <code>json_deserializer</code>
</li>
<li>Enhances json::any class, adds type checks when casting back to original value</li>
<li>Fixes some warning messages</li>
</ul>

<h2>Using the jsoncons library</h2>
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
11 changes: 7 additions & 4 deletions src/doc/Changelog.md
Original file line number Diff line number Diff line change
@@ -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
--------------
Expand Down

0 comments on commit 7ce1d0e

Please sign in to comment.