Skip to content

Commit

Permalink
**4.6.0**
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
Jono authored and Jono committed Apr 23, 2021
1 parent d65f93b commit b2ff803
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
9 changes: 9 additions & 0 deletions Change_History.md
Original file line number Diff line number Diff line change
Expand Up @@ -564,3 +564,12 @@ version 4: adding version identifier to each digest: 'T1'
10/Dec/2020
Checking in files to create pypi package
</PRE>

**4.6.0**
<PRE>
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)
</PRE>
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -271,10 +276,13 @@ ATIS 2014, November, 2014, pages 199-210

# Current Version

**4.5.0**
**4.6.0**
<PRE>
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)
</PRE>

# Change History
Expand Down
2 changes: 1 addition & 1 deletion include/win_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit b2ff803

Please sign in to comment.