Skip to content

Commit

Permalink
Version 2.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
peteroupc committed Jun 2, 2017
1 parent 17d5ca9 commit 86370f6
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 15 deletions.
11 changes: 6 additions & 5 deletions CBOR.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package>
<metadata>
<id>PeterO.Cbor</id>
<version>2.5.1</version>
<version>2.5.2</version>
<title>CBOR</title>
<authors>Peter Occil</authors>
<owners>Peter Occil</owners>
Expand All @@ -15,8 +15,9 @@
</description>
<summary>A C# implementation of Concise Binary Object Representation (CBOR), a data serialization format. This implementation can also convert between CBOR and JSON.</summary>
<releaseNotes>
In version 2.5.1:
* Really sign the CBOR assembly with a strong name key
In version 2.5.2:
* Unlike version 2.4.2, signed CBOR assembly with a strong name key.
* Unlike version 2.4.2, library uses strong-named version of [`PeterO.Numbers`](https://www.nuget.org/packages/PeterO.Numbers), version 0.4.0
In version 2.4.2:
* Really use 0.2.2 of
[`PeterO.Numbers`](https://www.nuget.org/packages/PeterO.Numbers)
Expand Down Expand Up @@ -52,11 +53,11 @@ In version 2.4:
* Fixed JSON parsing bugs
See the project page for release notes on previous versions: https://github.com/peteroupc/CBOR
</releaseNotes>
<copyright>Written by Peter O. in 2013-2015. Any copyright is released to the Public Domain.</copyright>
<copyright>Written by Peter O. in 2013-2017. Any copyright is released to the Public Domain.</copyright>
<tags>cbor data serialization binary json numbers arithmetic</tags>
<dependencies>
<group>
<dependency id="PeterO.Numbers" version="0.2.2" />
<dependency id="PeterO.Numbers" version="0.4.0" />
</group>
</dependencies>
</metadata>
Expand Down
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Any copyright is dedicated to the Public Domain.
[assembly: AssemblyProduct("CBOR")]
[assembly:
AssemblyCopyright(
"Written by Peter O. in 2013-2015. Any copyright is " +
"Written by Peter O. in 2013-2017. Any copyright is " +
"dedicated to the Public Domain. " +
"<http://creativecommons.org/publicdomain/zero/1.0/>")]
[assembly: AssemblyTrademark("")]
Expand All @@ -33,4 +33,4 @@ Any copyright is dedicated to the Public Domain.
//
// 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("2.5.1")]
[assembly: AssemblyVersion("2.5.2")]
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@ text to CBOR objects and back.

**See the [C# (.NET) API documentation](https://peteroupc.github.io/CBOR/docs/).**

The C# implementation is designed as a Portable Class Library, making it usable not only in the .NET
Framework, but also Silverlight 5 and Windows Phone 8.
The C# implementation is designed as a Portable Class Library.

Other Sites
----------
Expand Down Expand Up @@ -231,18 +230,19 @@ The following are some clarifications to RFC 7049.
IRI are like URIs except that they also allow non-ASCII characters.

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

### Version 2.5.2

* Unlike version 2.4.2, signed CBOR assembly with a strong name key.
* Unlike version 2.4.2, library uses strong-named version of [`PeterO.Numbers`](https://www.nuget.org/packages/PeterO.Numbers), version 0.4.0

### Version 2.5.1

* Really sign the CBOR assembly with a strong name key.
* Release was erroneous.

### Version 2.5

* Sign the CBOR assembly with a strong name key (UPDATE: Version 2.5 was
mistakenly released without a strong name.)
* Update [`PeterO.Numbers`](https://www.nuget.org/packages/PeterO.Numbers) to
strong-named version
* Release was erroneous.

### Version 2.4.2

Expand Down

0 comments on commit 86370f6

Please sign in to comment.