Skip to content

Commit

Permalink
Merge pull request #147 from jonjoliver/master
Browse files Browse the repository at this point in the history
README.md / Change_History.md / version numbers for **4.12.1**
  • Loading branch information
merces authored Oct 8, 2024
2 parents 8667ef3 + f55e676 commit 188c9c8
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ project(TLSH)

set(VERSION_MAJOR 4)
set(VERSION_MINOR 12)
set(VERSION_PATCH 0)
set(VERSION_PATCH 1)

# TLSH uses only half the counting buckets.
# It can use all the buckets now.
Expand Down
9 changes: 9 additions & 0 deletions Change_History.md
Original file line number Diff line number Diff line change
Expand Up @@ -739,3 +739,12 @@ TIME ms= 21.00 per million iterations
Merge pull request #137 - this fixed a memory leak in py-tlsh
Merge pull request #134 - this improved the ifdef WINDOWS to be more portable
</PRE>

**4.12.1**
<PRE>
08/10/2024
Merge pull request #146 - Remove call to sprintf() to avoid warnings
Merge pull request #141 - py_ext: use PyVarObject_HEAD instead of PyObject_HEAD_INIT
Merge pull request #138 - Build: Define default options only on "default"
Merge pull request #136 - Bug Fix+Portability: Improve portability by integral division
</PRE>
20 changes: 13 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ the detection of similar objects by comparing their hash values. Note that
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 (relatively) New in TLSH 4.12.0
16/09/2024
## What's (relatively) New in TLSH 4.12.x
08/10/2024

Release version 4.10.x - a Python clustering tool.
- See the directory tlshCluster.
Expand All @@ -20,6 +20,11 @@ I am going to try to make 4.12.0 a release version and build a py-tlsh Python li
4.12.0 includes:
Merge pull request #137 - this fixed a memory leak in py-tlsh
Merge pull request #134 - this improved the ifdef WINDOWS to be more portable
4.12.1 includes:
Merge pull request #146 - Remove call to sprintf() to avoid warnings
Merge pull request #141 - py_ext: use PyVarObject_HEAD instead of PyObject_HEAD_INIT
Merge pull request #138 - Build: Define default options only on "default"
Merge pull request #136 - Bug Fix+Portability: Improve portability by integral division

2020
- adopted by [Virus Total](https://developers.virustotal.com/v3.0/reference#files-tlsh)
Expand Down Expand Up @@ -291,12 +296,13 @@ TLSH similarity is expressed as a difference score:

# Current Version

**4.12.0**
**4.12.1**
<PRE>
16/09/2024
document what has changed since **4.11.2** on 23/10/2021
Merge pull request #137 - this fixed a memory leak in py-tlsh
Merge pull request #134 - this improved the ifdef WINDOWS to be more portable
08/10/2024
Merge pull request #146 - Remove call to sprintf() to avoid warnings
Merge pull request #141 - py_ext: use PyVarObject_HEAD instead of PyObject_HEAD_INIT
Merge pull request #138 - Build: Define default options only on "default"
Merge pull request #136 - Bug Fix+Portability: Improve portability by integral division
</PRE>

# Change History
Expand Down
2 changes: 1 addition & 1 deletion include/tlsh_win_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

#define VERSION_MAJOR 4
#define VERSION_MINOR 12
#define VERSION_PATCH 0
#define VERSION_PATCH 1
#define TLSH_HASH "compact hash"
#define TLSH_CHECKSUM "1 byte checksum"

Expand Down

0 comments on commit 188c9c8

Please sign in to comment.