Skip to content

Commit 7ce1d0e

Browse files
committed
Updates to docs
1 parent 50e1802 commit 7ce1d0e

File tree

4 files changed

+23
-11
lines changed

4 files changed

+23
-11
lines changed

Changelog.html

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -468,11 +468,15 @@
468468
</style>
469469
</head>
470470
<body>
471-
<h2>Target 0.98.1 Release</h2>
471+
<h2>0.98.1 Release</h2>
472472

473473
<ul>
474-
<li>Enhancements to processing CSV files to output JSON </li>
475-
<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>
474+
<li>Enhances parser for CSV files that outputs JSON, see example below. </li>
475+
<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>
476+
<li>Adds <code>is_valid</code> member function to <code>json_deserializer</code>
477+
</li>
478+
<li>Enhances json::any class, adds type checks when casting back to original value</li>
479+
<li>Fixes some warning messages</li>
476480
</ul>
477481

478482
<h2>0.98 Release</h2>

README.html

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -498,11 +498,15 @@ <h1>jsoncons: a C++ library for json construction</h1>
498498
<li>Handles JSON texts of arbitrarily large depth, a limit can be set if desired</li>
499499
</ul>
500500

501-
<h2>What's new on master</h2>
501+
<h2>What's new in 0.98.1 Release</h2>
502502

503503
<ul>
504-
<li>Enhancements to processing CSV files to output JSON, see example below. </li>
505-
<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>
504+
<li>Enhances parser for CSV files that outputs JSON, see example below. </li>
505+
<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>
506+
<li>Adds <code>is_valid</code> member function to <code>json_deserializer</code>
507+
</li>
508+
<li>Enhances json::any class, adds type checks when casting back to original value</li>
509+
<li>Fixes some warning messages</li>
506510
</ul>
507511

508512
<h2>Using the jsoncons library</h2>

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,13 @@ The library has a number of features, which are listed below:
2525
- 100 percent pass of test suite files from http://www.json.org/JSON_checker/
2626
- Handles JSON texts of arbitrarily large depth, a limit can be set if desired
2727

28-
## What's new on master
28+
## What's new in 0.98.1 Release
2929

3030
- Enhances parser for CSV files that outputs JSON, see example below.
3131
- 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.
3232
- Adds `is_valid` member function to `json_deserializer`
3333
- Enhances json::any class, adds type checks when casting back to original value
34+
- Fixes some warning messages
3435

3536
## Using the jsoncons library
3637

src/doc/Changelog.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1-
Target 0.98.1 Release
2-
---------------------
1+
0.98.1 Release
2+
--------------
33

4-
- Enhancements to processing CSV files to output JSON
5-
- 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)`.
4+
- Enhances parser for CSV files that outputs JSON, see example below.
5+
- 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.
6+
- Adds `is_valid` member function to `json_deserializer`
7+
- Enhances json::any class, adds type checks when casting back to original value
8+
- Fixes some warning messages
69

710
0.98 Release
811
--------------

0 commit comments

Comments
 (0)