Skip to content

Commit 11b5007

Browse files
committed
Updates for 1.5.1 release
1 parent b25e0b5 commit 11b5007

File tree

3 files changed

+29
-3
lines changed

3 files changed

+29
-3
lines changed

NEWS.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
Release 1.5.1: 19th July 2023
2+
-----------------------------
3+
4+
This release is mainly small updates and bug fixes focusing on
5+
specific platforms, with no new features added.
6+
7+
Changes
8+
9+
- Be more selective in use of AVX512 on AMD Zen4 processors. This can
10+
be faster (e.g. with 64-way unrolling), but in the current rANS codec
11+
implementations AVX2 is faster for certain operations (PR#85).
12+
13+
- Add config.h to test programs to help them pick up definitions such
14+
as XOPEN_SOURCE (PR#84)
15+
16+
- Add FreeBSD to CI testing (PR#83)
17+
18+
Bug fixes
19+
20+
- Trivial bug fix to the rans4x16pr test harness when given
21+
incompressible data (PR#86).
22+
23+
- Make ARM NEON checks specific to AArch64 and exclude AArch32 systems.
24+
(PR#82 to fix issue#81, reported by Robert Clausecker)
25+
26+
127
Release 1.5.0: 14th April 2023
228
------------------------------
329

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.5.0)
2+
AC_INIT(htscodecs, 1.5.1)
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=2
64+
VERS_REVISION=3
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 100500
46+
#define HTSCODECS_VERSION 100501
4747

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

0 commit comments

Comments
 (0)