Skip to content

Commit 28a7ca3

Browse files
committed
Version 2.0.0
1 parent 4f29e59 commit 28a7ca3

2 files changed

Lines changed: 11 additions & 7 deletions

File tree

Portable.CBOR.nuspec

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,16 @@
1616
</description>
1717
<summary>A C# implementation of Concise Binary Object Representation (CBOR), a data serialization format. This implementation can also convert between CBOR and JSON.</summary>
1818
<releaseNotes>
19-
In version 1.3:
20-
- Added a CompareToIgnoreTags method to CBORObject
21-
- The BigInteger constructor in the C# version is deprecated
22-
- Fixed bugs in converting from CBOR float and double to integers in some corner cases
23-
- Fixed a bug where CBORObject's OutermostTag returns 0 instead of the correct -1 for untagged objects
24-
- Fixed a bug where BigInteger's bitLength return value can be wrong in some corner cases
19+
In version 2.0:
20+
- Several very special characters are escaped in JSON output, such as line and paragraph
21+
separators, and byte order marks.
22+
- BigInteger's longValue method was fixed
23+
- BigInteger was changed to have no public constructors
24+
- ReadJSON now supports UTF-16 and UTF-32 in addition to UTF-8
25+
- PrecisionContext's JavaBigDecimal object was corrected.
26+
- Fixed bugs in parsing JSON numbers in some cases
27+
- CBORObject's one-argument Add method now adds CBORObject.Null if passed null,
28+
rather than throwing an exception.
2529
See the project page for release notes on previous versions: https://github.com/peteroupc/CBOR
2630
</releaseNotes>
2731
<copyright>Written by Peter O. in 2013-2014. Any copyright is released to the Public Domain.</copyright>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ The following are some clarifications to RFC 7049.
197197
Release Notes
198198
-----------
199199

200-
In version 2.0 (to come):
200+
In version 2.0:
201201

202202
- Several very special characters are escaped in JSON output, such as line and paragraph
203203
separators, and byte order marks.

0 commit comments

Comments
 (0)