Skip to content

Commit

Permalink
Updated to version 5.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueRaja committed Feb 27, 2021
1 parent 2a40f66 commit 33f4fd3
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<TargetFramework>netstandard1.0</TargetFramework>
<RootNamespace>Priority_Queue</RootNamespace>
<PackageId>OptimizedPriorityQueue</PackageId>
<Version>5.0.0</Version>
<Version>5.1.0</Version>
<Authors>BlueRaja</Authors>
<Company />
<Product>Highly Optimized Priority Queue</Product>
<Description>A highly optimized Priority Queue for path-finding and related applications</Description>
<Copyright>Copyright 2020</Copyright>
<Copyright>Copyright 2021</Copyright>
<PackageProjectUrl>https://github.com/BlueRaja/High-Speed-Priority-Queue-for-C-Sharp</PackageProjectUrl>
<RepositoryUrl>https://github.com/BlueRaja/High-Speed-Priority-Queue-for-C-Sharp</RepositoryUrl>
<AssemblyName>PriorityQueue</AssemblyName>
Expand Down
4 changes: 2 additions & 2 deletions Priority Queue PCL/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("5.0.0")]
[assembly: AssemblyFileVersion("5.0.0")]
[assembly: AssemblyVersion("5.1.0")]
[assembly: AssemblyFileVersion("5.1.0")]
4 changes: 2 additions & 2 deletions Priority Queue Unity Full/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("5.0.0")]
[assembly: AssemblyFileVersion("5.0.0")]
[assembly: AssemblyVersion("5.1.0")]
[assembly: AssemblyFileVersion("5.1.0")]
4 changes: 2 additions & 2 deletions Priority Queue Unity Subset/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("5.0.0")]
[assembly: AssemblyFileVersion("5.0.0")]
[assembly: AssemblyVersion("5.1.0")]
[assembly: AssemblyFileVersion("5.1.0")]
6 changes: 3 additions & 3 deletions Priority Queue/Priority Queue.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
<package >
<metadata>
<id>OptimizedPriorityQueue</id>
<version>5.0.0</version>
<version>5.1.0</version>
<title>Highly Optimized Priority Queue</title>
<authors>BlueRaja</authors>
<owners>BlueRaja</owners>
<licenseUrl>https://github.com/BlueRaja/High-Speed-Priority-Queue-for-C-Sharp/blob/master/LICENSE.txt</licenseUrl>
<projectUrl>https://github.com/BlueRaja/High-Speed-Priority-Queue-for-C-Sharp</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A highly optimized Priority Queue for path-finding and related applications</description>
<releaseNotes>Added SourceLinks and latest compiler flags for .Net Standard; Removed space from assembly name for OSes that don't support them</releaseNotes>
<copyright>Copyright 2020</copyright>
<releaseNotes>Added strong names</releaseNotes>
<copyright>Copyright 2021</copyright>
<tags>C# priority-queue pathfinding optimized</tags>
</metadata>
<files>
Expand Down
4 changes: 2 additions & 2 deletions Priority Queue/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("5.0.0")]
[assembly: AssemblyFileVersion("5.0.0")]
[assembly: AssemblyVersion("5.1.0")]
[assembly: AssemblyFileVersion("5.1.0")]

3 comments on commit 33f4fd3

@theaeolianmachine
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@BlueRaja do you have any release notes on what changes were included with 5.1.0 (in particular, are there any breaking changes?)

@BlueRaja
Copy link
Owner Author

@BlueRaja BlueRaja commented on 33f4fd3 Mar 2, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@theaeolianmachine This project uses Semantic Versioning (aka SemVer), as required by NuGet, so you can tell there are no breaking changes by the fact that the major version number has not changed.

If you'd like release notes, I add small notes to Nuget on each release: https://www.nuget.org/packages/OptimizedPriorityQueue/

The only changes were closing out #52 and #53, both of which affect a very tiny audience. Unless you were following one of those issues, you likely won't get any benefit from upgrading from 5.0.0 --> 5.1.0

@theaeolianmachine
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Awesome, thank you.

Please sign in to comment.