Skip to content

Commit

Permalink
Switched to release version number 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kimlaine committed May 27, 2020
1 parent 5b8538c commit e7cd2d6
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 11 deletions.
13 changes: 5 additions & 8 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,15 @@
# List of Changes

## Version 2.1

### 2.1.0
- Changed name `KukuDotNet` to `KukuNet`.
- Improved `README.md`.
- Added NuGet package.

## Version 2.0

### 2.0.0
- Switched to using faster non-cryptographic hash functions and a faster insertion method.
- Created .NET Standard wrappers for the public API.
- Kuku is not a CMake project (with a top-level CMake file)
- Kuku is not a CMake project (with a top-level CMake file).
- Kuku now allows any size hash table -- not just a power of two.
Note the change in the constructor of the `KukuTable` class that now accepts the table size directly, and not its base-2 logarithm.
- Changed name `KukuDotNet` to `KukuNet`.
- Added NuGet package.

## Version 1.1

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ cmake_minimum_required(VERSION 3.12)
# 4. Kuku C++ tests #
###################################################

project(Kuku VERSION 2.2.0 LANGUAGES CXX C)
project(Kuku VERSION 2.0.0 LANGUAGES CXX C)

if(${MSVC})
message(FATAL_ERROR "Please build using the attached Visual Studio solution/project files.")
Expand Down
2 changes: 1 addition & 1 deletion dotnet/nuget/KukuNet-multi.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>Microsoft.Research.Kuku</id>
<version>2.2</version>
<version>2.0</version>
<title>Microsoft Kuku</title>
<authors>Microsoft</authors>
<owners>Microsoft</owners>
Expand Down
2 changes: 1 addition & 1 deletion dotnet/nuget/KukuNet.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>Microsoft.Research.Kuku</id>
<version>2.2</version>
<version>2.0</version>
<title>Microsoft Kuku</title>
<authors>Microsoft</authors>
<owners>Microsoft</owners>
Expand Down

0 comments on commit e7cd2d6

Please sign in to comment.