Skip to content

Commit 188c9c8

Browse files
authored
Merge pull request #147 from jonjoliver/master
README.md / Change_History.md / version numbers for **4.12.1**
2 parents 8667ef3 + f55e676 commit 188c9c8

File tree

4 files changed

+24
-9
lines changed

4 files changed

+24
-9
lines changed

‎CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ project(TLSH)
5757

5858
set(VERSION_MAJOR 4)
5959
set(VERSION_MINOR 12)
60-
set(VERSION_PATCH 0)
60+
set(VERSION_PATCH 1)
6161

6262
# TLSH uses only half the counting buckets.
6363
# It can use all the buckets now.

‎Change_History.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -739,3 +739,12 @@ TIME ms= 21.00 per million iterations
739739
Merge pull request #137 - this fixed a memory leak in py-tlsh
740740
Merge pull request #134 - this improved the ifdef WINDOWS to be more portable
741741
</PRE>
742+
743+
**4.12.1**
744+
<PRE>
745+
08/10/2024
746+
Merge pull request #146 - Remove call to sprintf() to avoid warnings
747+
Merge pull request #141 - py_ext: use PyVarObject_HEAD instead of PyObject_HEAD_INIT
748+
Merge pull request #138 - Build: Define default options only on "default"
749+
Merge pull request #136 - Bug Fix+Portability: Improve portability by integral division
750+
</PRE>

‎README.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ the detection of similar objects by comparing their hash values. Note that
1010
the byte stream should have a sufficient amount of complexity. For example,
1111
a byte stream of identical bytes will not generate a hash value.
1212

13-
## What's (relatively) New in TLSH 4.12.0
14-
16/09/2024
13+
## What's (relatively) New in TLSH 4.12.x
14+
08/10/2024
1515

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

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

292297
# Current Version
293298

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

302308
# Change History

‎include/tlsh_win_version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
#define VERSION_MAJOR 4
99
#define VERSION_MINOR 12
10-
#define VERSION_PATCH 0
10+
#define VERSION_PATCH 1
1111
#define TLSH_HASH "compact hash"
1212
#define TLSH_CHECKSUM "1 byte checksum"
1313

0 commit comments

Comments
 (0)