Skip to content

Commit

Permalink
Version 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
peteroupc committed Jul 30, 2018
1 parent ea205f9 commit 8058e3d
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 37 deletions.
12 changes: 12 additions & 0 deletions CBOR.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<package
><metadata><version>3.2.0</version><id>PeterO.Cbor</id><requireLicenseAcceptance>false</requireLicenseAcceptance><releaseNotes>

Version 3.2

- Added build targeting the .NET Framework 2.0
- Obsoleted much of the existing API in CBOREncodeOptions and added new APIs to replace it.
- Documentation for some CBORObject methods now points to the use of CBOREncodeOptions.Default
- Documentation edited in other places

</releaseNotes><summary></summary><licenseUrl>http://creativecommons.org/publicdomain/zero/1.0/</licenseUrl><projectUrl>https://github.com/peteroupc/CBOR</projectUrl><authors>Peter Occil</authors><description>A C# implementation of Concise Binary Object Representation (CBOR), a general-purpose binary data format defined in RFC 7049.</description><owners>Peter Occil</owners><title>CBOR (Concise Binary Object Representation)</title><tags>cbor data serialization binary json numbers arithmetic</tags><dependencies><group><dependency id='PeterO.Numbers' version='1.1.1' /></group></dependencies></metadata><files><file src='CBOR/bin/Release/netstandard1.0/CBOR.dll' target='/lib/netstandard1.0' /><file src='CBOR/bin/Release/netstandard1.0/CBOR.xml' target='/lib/netstandard1.0' /><file src='CBOR20/bin/Release/CBOR.dll' target='/lib/net20' /><file src='CBOR20/bin/Release/CBOR.xml' target='/lib/net20' /></files></package
>
11 changes: 10 additions & 1 deletion CBOR20/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
[assembly: System.CLSCompliant(true)]
using System.Reflection;
[assembly:System.CLSCompliant(true)]
[assembly:AssemblyVersion("3.2.0")]
[assembly:AssemblyFileVersion("3.2.0.0")]
[assembly:AssemblyInformationalVersion("3.2.0.0")]
[assembly:AssemblyProduct("CBOR (Concise Binary Object Representation)")]
[assembly:AssemblyTitle("CBOR (Concise Binary Object Representation)")]
[assembly:AssemblyDescription("A C# implementation of Concise Binary Object Representation (CBOR), a general-purpose binary data format defined in RFC 7049.")]
[assembly:AssemblyCompany("Peter Occil")]
[assembly:AssemblyCopyright("http://creativecommons.org/publicdomain/zero/1.0/")]
44 changes: 9 additions & 35 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,36 +1,10 @@
/*
Written by Peter O. in 2013.
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
If you like this, you should donate to Peter O.
at: http://peteroupc.github.io/
*/
#region Using directives
using System;
using System.Reflection;
#endregion
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("CBOR")]
[assembly: AssemblyDescription(
"A C# implementation of Concise Binary " +
"Object Representation (CBOR).")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Peter Occil")]
[assembly: AssemblyProduct("CBOR")]
[assembly:
AssemblyCopyright(
"Written by Peter O. in 2013-2017. Any copyright is " +
"dedicated to the Public Domain. " +
"<http://creativecommons.org/publicdomain/zero/1.0/>")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: CLSCompliant(true)]
// The assembly version has following format :
//
// Major.Minor.Build.Revision
//
// You can specify all the values or you can use the default the Revision and
// Build Numbers by using the '*' as shown below:
[assembly: AssemblyVersion("3.0.0")]
[assembly:System.CLSCompliant(true)]
[assembly:AssemblyVersion("3.2.0")]
[assembly:AssemblyFileVersion("3.2.0.0")]
[assembly:AssemblyInformationalVersion("3.2.0.0")]
[assembly:AssemblyProduct("CBOR (Concise Binary Object Representation)")]
[assembly:AssemblyTitle("CBOR (Concise Binary Object Representation)")]
[assembly:AssemblyDescription("A C# implementation of Concise Binary Object Representation (CBOR), a general-purpose binary data format defined in RFC 7049.")]
[assembly:AssemblyCompany("Peter Occil")]
[assembly:AssemblyCopyright("http://creativecommons.org/publicdomain/zero/1.0/")]
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -228,11 +228,18 @@ The following are some clarifications to RFC 7049.
treats values of infinity and NaN as invalid.
* For tag 32, this implementation accepts strings that are valid
Internationalized Resource Identifiers (IRIs) in addition to URIs.
IRI are like URIs except that they also allow non-ASCII characters.
IRIs are like URIs except that they also allow non-ASCII characters.

Release Notes
-----------

### Version 3.2

- Added build targeting the .NET Framework 2.0
- Obsoleted much of the existing API in CBOREncodeOptions and added new APIs to replace it.
- Documentation for some CBORObject methods now points to the use of CBOREncodeOptions.Default
- Documentation edited in other places

### Version 3.1

- Add options to control property name generation in CBORObject.FromObject.
Expand Down

0 comments on commit 8058e3d

Please sign in to comment.