Skip to content

Commit

Permalink
Merge pull request ical-org#346 from rianjs/FixVersion
Browse files Browse the repository at this point in the history
PRODID should live its own life instead of being linked to VERSION ical-org#344
  • Loading branch information
rianjs authored Nov 28, 2017
2 parents 9b16eb7 + c8da1a3 commit 15b9664
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion net-core/Ical.Net.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>Ical.Net</id>
<version>4.0.5</version>
<version>4.0.6</version>
<title>Ical.Net</title>
<authors>Rian Stockbower, Douglas Day</authors>
<owners>Rian Stockbower</owners>
Expand Down
2 changes: 1 addition & 1 deletion net-core/Ical.Net/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ public static class TransparencyType
public static class LibraryMetadata
{
public const string Version = "2.0";
public static readonly string ProdId = $"-//github.com/rianjs/ical.net//NONSGML ical.net {Version}//EN";
public static readonly string ProdId = "-//github.com/rianjs/ical.net//NONSGML ical.net 4.0//EN";
}

public static class CalendarScales
Expand Down
2 changes: 1 addition & 1 deletion release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
A listing of what each [Nuget package](https://www.nuget.org/packages/Ical.Net) version represents.

### v4
* 4.0.5 [#344](https://github.com/rianjs/ical.net/issues/344). Fix the VERSION property so it's 2.0 as RFC-5545 requires.
* 4.0.6 [#344](https://github.com/rianjs/ical.net/issues/344). Fix the VERSION property so it's 2.0 as RFC-5545 requires.
* 4.0.4 [PR 341](https://github.com/rianjs/ical.net/pull/341). Cache the UTC representation for `CalDateTime`s. This results in a 12-16% reduction in unit test runtime.
* 4.0.3 [#337](https://github.com/rianjs/ical.net/issues/337). Fixed a bug in `SimpleDeserializer` where tab characters (`\t`) were excluded from regex match.
* 4.0.1 [#335](https://github.com/rianjs/ical.net/issues/335). Technically this should be 5.0, but given 4.0.0 only has 24 downloads, I've just done a minor version bump.
Expand Down

0 comments on commit 15b9664

Please sign in to comment.