Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ rocky_task:
task:
name: freebsd
freebsd_instance:
image_family: freebsd-15-0-snap
image_family: freebsd-14-3

pkginstall_script:
- IGNORE_OSVERSION=yes pkg update -f
Expand Down
15 changes: 15 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
Release 1.6.5: 9th December 2025
--------------------------------

This is a bug fix release.

Bug fixes

- Add cpuid checks for XSAVE, OSXSAVE and AVX. Corrects auto-detection of
SIMD version on machines that have but disable specific CPU features.
(PR #140 Robert Davies, fixes samtools/samtools#2256 Ran Fan).

- Avoid undefined behaviour by replacing literal copies with memcpy
(PR #142 James Bonfield, fixes Issue #141 Vasudeva Easwara Sarma)


Release 1.6.4: 9th July 2025
----------------------------

Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dnl Process this file with autoconf to produce a configure script.
AC_INIT(htscodecs, 1.6.4)
AC_INIT(htscodecs, 1.6.5)

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

VERS_CURRENT=3
VERS_REVISION=9
VERS_REVISION=10
VERS_AGE=1
AC_SUBST(VERS_CURRENT)
AC_SUBST(VERS_REVISION)
Expand Down
2 changes: 1 addition & 1 deletion htscodecs/htscodecs.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
* Note currently this needs manually editing as it isn't automatically
* updated by autoconf.
*/
#define HTSCODECS_VERSION 100604
#define HTSCODECS_VERSION 100605

/*
* A const string form of the HTSCODECS_VERSION define.
Expand Down