Skip to content

Commit

Permalink
rev to 4.2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kaosborn committed Jan 2, 2019
1 parent 096b010 commit fe7fe18
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions Collections/Collections.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFrameworks>netstandard1.0;net45;net40;net35</TargetFrameworks>
<AssemblyName>KaosCollections</AssemblyName>
<RootNamespace>Kaos.Collections</RootNamespace>
<Version>4.1.0.1</Version>
<Version>4.2.0.0</Version>
<Authors>Kasey O.</Authors>
<Description>KaosCollections is a .NET library that provides generic collection classes for storing elements that are both sorted and indexed. Two of these classes emulate Microsoft's SortedDictionary and SortedSet while delivering superior performance and greatly enhanced capability. Also included are sorted bag and a map classes. Based on order statistic B+ trees, all classes provide getting elements by index, getting the index of an element, range removal by index, range enumeration, and more.

Expand All @@ -13,8 +13,8 @@ Kaos.Collections.RankedDictionary&lt;TKey,TValue&gt;
Kaos.Collections.RankedSet&lt;T&gt;
Kaos.Collections.RankedMap&lt;TKey,TValue&gt;
Kaos.Collections.RankedBag&lt;T&gt;</Description>
<AssemblyVersion>4.1.0.1</AssemblyVersion>
<FileVersion>4.1.0.1</FileVersion>
<AssemblyVersion>4.2.0.0</AssemblyVersion>
<FileVersion>4.2.0.0</FileVersion>
<Company>github.com/kaosborn</Company>
<PackageId>Kaos.Collections</PackageId>
<Copyright>Copyright © 2009-2019 github.com/kaosborn</Copyright>
Expand Down
2 changes: 1 addition & 1 deletion Collections461/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
[assembly: AssemblyCulture ("")]
[assembly: ComVisible (false)]
[assembly: Guid ("c385faa0-382e-46e6-9557-3e1760edaab0")]
[assembly: AssemblyVersion ("4.1.0.1")]
[assembly: AssemblyVersion ("4.2.0.0")]
4 changes: 2 additions & 2 deletions Help/Content/Welcome.aml
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@
<content>
<para>To install using Package Manager:</para>
<list class="bullet">
<listItem><userInput><codeInline>Install-Package Kaos.Collections -Version 4.1.0</codeInline></userInput></listItem>
<listItem><userInput><codeInline>Install-Package Kaos.Collections -Version 4.2.0</codeInline></userInput></listItem>
</list>
<para>To install using the .NET CLI:</para>
<list class="bullet">
<listItem><userInput>dotnet add package Kaos.Collections --version 4.1.0</userInput></listItem>
<listItem><userInput>dotnet add package Kaos.Collections --version 4.2.0</userInput></listItem>
</list>
<para>To install using the Visual Studio gallery:</para>
<list class="ordered">
Expand Down
2 changes: 1 addition & 1 deletion Help/Help.shfbproj
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<KeepLogFile>True</KeepLogFile>
<DisableCodeBlockComponent>False</DisableCodeBlockComponent>
<CleanIntermediates>True</CleanIntermediates>
<HelpFileVersion>4.1.0.1</HelpFileVersion>
<HelpFileVersion>4.2.0.0</HelpFileVersion>
<MaximumGroupParts>2</MaximumGroupParts>
<NamespaceGrouping>False</NamespaceGrouping>
<SyntaxFilters>C#</SyntaxFilters>
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ This library is built as a .NET Standard project with multitargeting to:

To install using Package Manager:

* **`Install-Package Kaos.Collections -Version 4.1.0`**
* **`Install-Package Kaos.Collections -Version 4.2.0`**

To install using the .NET CLI:

* **`dotnet add package Kaos.Collections --version 4.1.0`**
* **`dotnet add package Kaos.Collections --version 4.2.0`**

To install using the Visual Studio gallery:
1. Click **Manage NuGet Packages**.
Expand All @@ -52,7 +52,7 @@ A project may then reference the extracted platform-specific `.dll` directly.

### Project status

For the latest stable release, [install version 4.1.0](#library-installation).
For the latest stable release, [install version 4.2.0](#library-installation).

Documentation for the main branch is available by building the Help project for the `.chm` output.

Expand Down Expand Up @@ -90,7 +90,7 @@ Building documentation requires Sandcastle Help File Builder:

This repository is a single Visual Studio solution with additional files in the root.

* The `Bench` folder contains console program projects that mostly target the .NET 4.61 library build.
* The `Bench` folder contains console program projects that mostly target the .NET 4.6.1 library build.
These programs exist to:

* Provide examples for documentation
Expand Down

0 comments on commit fe7fe18

Please sign in to comment.