diff --git a/Collections/Collections.csproj b/Collections/Collections.csproj
index 02ea08e..e683d1c 100644
--- a/Collections/Collections.csproj
+++ b/Collections/Collections.csproj
@@ -4,7 +4,7 @@
netstandard1.0;net45;net40;net35
KaosCollections
Kaos.Collections
- 4.1.0.1
+ 4.2.0.0
Kasey O.
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.
@@ -13,8 +13,8 @@ Kaos.Collections.RankedDictionary<TKey,TValue>
Kaos.Collections.RankedSet<T>
Kaos.Collections.RankedMap<TKey,TValue>
Kaos.Collections.RankedBag<T>
- 4.1.0.1
- 4.1.0.1
+ 4.2.0.0
+ 4.2.0.0
github.com/kaosborn
Kaos.Collections
Copyright © 2009-2019 github.com/kaosborn
diff --git a/Collections461/Properties/AssemblyInfo.cs b/Collections461/Properties/AssemblyInfo.cs
index a83eb81..b614e42 100644
--- a/Collections461/Properties/AssemblyInfo.cs
+++ b/Collections461/Properties/AssemblyInfo.cs
@@ -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")]
diff --git a/Help/Content/Welcome.aml b/Help/Content/Welcome.aml
index e317542..0b289d9 100644
--- a/Help/Content/Welcome.aml
+++ b/Help/Content/Welcome.aml
@@ -61,11 +61,11 @@
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:
diff --git a/Help/Help.shfbproj b/Help/Help.shfbproj
index 08ab251..0edb86c 100644
--- a/Help/Help.shfbproj
+++ b/Help/Help.shfbproj
@@ -40,7 +40,7 @@
True
False
True
- 4.1.0.1
+ 4.2.0.0
2
False
C#
diff --git a/README.md b/README.md
index a6ba69a..ed49dcf 100644
--- a/README.md
+++ b/README.md
@@ -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**.
@@ -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.
@@ -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