From b2ff80316a66bbb6f4560df12bdf5d00461f491f Mon Sep 17 00:00:00 2001 From: Jono Date: Fri, 23 Apr 2021 12:51:15 +1000 Subject: [PATCH] **4.6.0** 23/04/2021 Merging in pull requests issue #99 - new Java version that solves large file problem (Thanks Daniel) Add architecture ppc64le to travis build (Thanks ddeka2910) Fix tmpArray is undefined in JavaScript version (Thanks carbureted) --- CMakeLists.txt | 2 +- Change_History.md | 9 +++++++++ README.md | 14 +++++++++++--- include/win_version.h | 2 +- 4 files changed, 22 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6053654..d4e9fe4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -56,7 +56,7 @@ cmake_minimum_required(VERSION 2.6) project(TLSH) set(VERSION_MAJOR 4) -set(VERSION_MINOR 5) +set(VERSION_MINOR 6) set(VERSION_PATCH 0) # TLSH uses only half the counting buckets. diff --git a/Change_History.md b/Change_History.md index c2d516b..09a1052 100644 --- a/Change_History.md +++ b/Change_History.md @@ -564,3 +564,12 @@ version 4: adding version identifier to each digest: 'T1' 10/Dec/2020 Checking in files to create pypi package + +**4.6.0** +
+23/04/2021
+	Merging in pull requests
+	issue #99 - new Java version that solves large file problem (Thanks Daniel)
+	Add architecture ppc64le to travis build (Thanks ddeka2910)
+	Fix tmpArray is undefined in JavaScript version (Thanks carbureted)
+
diff --git a/README.md b/README.md index 5ce68a8..2bfdd1d 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,11 @@ the byte stream should have a sufficient amount of complexity. For example, a byte stream of identical bytes will not generate a hash value. ## What's New in TLSH 4.x.x +23/April/2021 +Release version 4.6.0 +Issue 99 raised issues about what to do when evaluating the TLSH for files over 4GB +We decided to define that TLSH is the TLSH of the first 4GB of a file + 14/April/2021 We have written technical material that focuses on 2 topics at [https://tlsh.org](https://tlsh.org/) - fast nearest neighbour search and scalable clustering @@ -271,10 +276,13 @@ ATIS 2014, November, 2014, pages 199-210 # Current Version -**4.5.0** +**4.6.0**
-10/Dec/2020
-	Checking in files to create pypi package
+23/04/2021
+	Merging in pull requests
+	issue #99 - new Java version that solves large file problem (Thanks Daniel)
+	Add architecture ppc64le to travis build (Thanks ddeka2910)
+	Fix tmpArray is undefined in JavaScript version (Thanks carbureted)
 
# Change History diff --git a/include/win_version.h b/include/win_version.h index 9f04b03..ca0f94e 100644 --- a/include/win_version.h +++ b/include/win_version.h @@ -6,7 +6,7 @@ ****************************************************/ #define VERSION_MAJOR 4 -#define VERSION_MINOR 5 +#define VERSION_MINOR 6 #define VERSION_PATCH 0 #define TLSH_HASH "compact hash" #define TLSH_CHECKSUM "1 byte checksum"