Skip to content

Commit 9039a14

Browse files
committed
Make release 1.6.2
1 parent c82e61c commit 9039a14

File tree

5 files changed

+26
-6
lines changed

5 files changed

+26
-6
lines changed

NEWS.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
Release 1.6.2: 22nd May 2025
2+
----------------------------
3+
4+
This release has minor bug fixes and some continuous integration test
5+
improvements.
6+
7+
Bug fixes
8+
9+
- Improved check of out_size in rans4x16 and arithmetic coder, plus
10+
better memory freeing on error. (#127]
11+
12+
- [CI] Bump FreeBSD release used to 14.2 and Ubuntu to 24.04 (#129 jkb,
13+
#133 from John Marshall).
14+
15+
- [CI] Remove GitHub workflow shell override. (#133, John Marshall)
16+
17+
- [JavaScript] Correct arithmetic coder, (Commit 9d3127d, with thanks to
18+
Colin Diesh)
19+
20+
121
Release 1.6.1: 22nd August 2024
222
-------------------------------
323

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.1)
2+
AC_INIT(htscodecs, 1.6.2)
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=6
64+
VERS_REVISION=7
6565
VERS_AGE=1
6666
AC_SUBST(VERS_CURRENT)
6767
AC_SUBST(VERS_REVISION)

htscodecs/arith_dynamic.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2019-2022 Genome Research Ltd.
2+
* Copyright (c) 2019-2022, 2025 Genome Research Ltd.
33
* Author(s): James Bonfield
44
*
55
* Redistribution and use in source and binary forms, with or without

htscodecs/htscodecs.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2021-2024 Genome Research Ltd.
2+
* Copyright (c) 2021-2025 Genome Research Ltd.
33
* Author(s): James Bonfield
44
*
55
* Redistribution and use in source and binary forms, with or without
@@ -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 100601
46+
#define HTSCODECS_VERSION 100602
4747

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

htscodecs/rANS_static4x16pr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017-2023 Genome Research Ltd.
2+
* Copyright (c) 2017-2023, 2025 Genome Research Ltd.
33
* Author(s): James Bonfield
44
*
55
* Redistribution and use in source and binary forms, with or without

0 commit comments

Comments
 (0)