Skip to content

Commit d8c1bc1

Browse files
committed
Make release 1.6.4
1 parent a532924 commit d8c1bc1

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
lines changed

NEWS.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
Release 1.6.4: 9th July 2025
2+
----------------------------
3+
4+
This is parimarily a bug fix release.
5+
6+
Fixes
7+
8+
- Fixed a minor thread data race in first call of the rans4x16 codec.
9+
10+
- Protect against SIMD rANS encoding on small or highly compressible data
11+
sets. This could fail when combined with the RLE method where one
12+
sub-component was very small (<32 bytes) and the other was large.
13+
14+
Changes
15+
16+
- UUID4 based read names are now compressed better with the name tokeniser.
17+
This also slightly improves name compression of mixed data sets.
18+
19+
120
Release 1.6.3: 22nd May 2025
221
----------------------------
322

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
dnl Process this file with autoconf to produce a configure script.
2-
AC_INIT(htscodecs, 1.6.3)
2+
AC_INIT(htscodecs, 1.6.4)
33

44
# Some functions benefit from -O3 optimisation, so if the user didn't
55
# explicitly set any compiler flags, we'll plump for O3.
@@ -61,7 +61,7 @@ AM_EXTRA_RECURSIVE_TARGETS([fuzz])
6161
# libhtscodecs.so.1.1.0
6262

6363
VERS_CURRENT=3
64-
VERS_REVISION=8
64+
VERS_REVISION=9
6565
VERS_AGE=1
6666
AC_SUBST(VERS_CURRENT)
6767
AC_SUBST(VERS_REVISION)

htscodecs/htscodecs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
* Note currently this needs manually editing as it isn't automatically
4444
* updated by autoconf.
4545
*/
46-
#define HTSCODECS_VERSION 100603
46+
#define HTSCODECS_VERSION 100604
4747

4848
/*
4949
* A const string form of the HTSCODECS_VERSION define.

0 commit comments

Comments
 (0)