From 8058e3d10381fdc493202619c92c6823886093ee Mon Sep 17 00:00:00 2001 From: Peter O Date: Mon, 30 Jul 2018 18:05:29 -0400 Subject: [PATCH] Version 3.2.0 --- CBOR.nuspec | 12 +++++++++ CBOR20/Properties/AssemblyInfo.cs | 11 +++++++- Properties/AssemblyInfo.cs | 44 +++++++------------------------ README.md | 9 ++++++- 4 files changed, 39 insertions(+), 37 deletions(-) create mode 100644 CBOR.nuspec diff --git a/CBOR.nuspec b/CBOR.nuspec new file mode 100644 index 00000000..08126970 --- /dev/null +++ b/CBOR.nuspec @@ -0,0 +1,12 @@ +3.2.0PeterO.Cborfalse + +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 + +http://creativecommons.org/publicdomain/zero/1.0/https://github.com/peteroupc/CBORPeter OccilA C# implementation of Concise Binary Object Representation (CBOR), a general-purpose binary data format defined in RFC 7049.Peter OccilCBOR (Concise Binary Object Representation)cbor data serialization binary json numbers arithmetic \ No newline at end of file diff --git a/CBOR20/Properties/AssemblyInfo.cs b/CBOR20/Properties/AssemblyInfo.cs index ce83c606..3800076f 100644 --- a/CBOR20/Properties/AssemblyInfo.cs +++ b/CBOR20/Properties/AssemblyInfo.cs @@ -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/")] diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs index b28610a6..3800076f 100644 --- a/Properties/AssemblyInfo.cs +++ b/Properties/AssemblyInfo.cs @@ -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. " + - "")] -[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/")] diff --git a/README.md b/README.md index be41e374..d28cf4a4 100644 --- a/README.md +++ b/README.md @@ -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.