Skip to content

Commit

Permalink
Version 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
peteroupc committed Jun 21, 2018
1 parent aafa79d commit 76121c7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CBOR/CBOR.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<Description>A C# implementation of Concise Binary Object Representation (CBOR), a general-purpose binary data format defined in RFC 7049.</Description>
<Summary>A C# implementation of Concise Binary Object Representation (CBOR), a general-purpose binary data format defined in RFC 7049. </Summary>
<Summary>A C# implementation of Concise Binary Object Representation (CBOR), a general-purpose binary data format defined in RFC 7049. </Summary>
<Copyright>Written by Peter O. in 2013-2017. Any copyright is released to the Public Domain.</Copyright>
<Copyright>Written by Peter O. in 2013-2018. Any copyright is released to the Public Domain.</Copyright>
<Authors>Peter Occil</Authors>
<PackageId>PeterO.Cbor</PackageId>
<PackageLicenseUrl>http://creativecommons.org/publicdomain/zero/1.0/</PackageLicenseUrl>
Expand Down Expand Up @@ -62,4 +62,4 @@ Version 3.1
<ItemGroup>
<PackageReference Include="PeterO.Numbers" Version="1.0.2" />
</ItemGroup>
</Project>
</Project>
7 changes: 4 additions & 3 deletions CBORTest/CBORObjectTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ internal static void CheckPropertyNames(object ao) {
"PropC");
/*
TODO: The following case conflicts with the Java version
of the CBOR library. Resolving this conflict may result in the
of the CBOR library. Resolving this conflict may result in the
Java version being backward-incompatible and so require
a major version change.
//--
Expand Down Expand Up @@ -2430,9 +2430,10 @@ public NestedPODClass() {
var valueCcFF = new PODOptions(false, false);
var valueCcFT = new PODOptions(false, true);
var valueCcTT = new PODOptions(true, true);
CBORObject co;
CBORObjectTest.CheckPropertyNames(ao);
var arrao = new PODClass[] { ao, ao };
var co = CBORObject.FromObject(arrao, valueCcTF);
co = CBORObject.FromObject(arrao, valueCcTF);
CBORObjectTest.CheckArrayPropertyNames(
CBORObject.FromObject(arrao, valueCcTF),
2,
Expand Down Expand Up @@ -2490,7 +2491,7 @@ public NestedPODClass() {
"propC");
/*
TODO: The following cases conflict with the Java version
of the CBOR library. Resolving this conflict may result in the
of the CBOR library. Resolving this conflict may result in the
Java version being backward-incompatible and so require
a major version change.
// ----
Expand Down

0 comments on commit 76121c7

Please sign in to comment.