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
20 changes: 20 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
Release 1.6.2: 22nd May 2025
----------------------------

This release has minor bug fixes and some continuous integration test
improvements.

Bug fixes

- Improved check of out_size in rans4x16 and arithmetic coder, plus
better memory freeing on error. (#127]

- [CI] Bump FreeBSD release used to 14.2 and Ubuntu to 24.04 (#129 jkb,
#133 from John Marshall).

- [CI] Remove GitHub workflow shell override. (#133, John Marshall)

- [JavaScript] Correct arithmetic coder, (Commit 9d3127d, with thanks to
Colin Diesh)


Release 1.6.1: 22nd August 2024
-------------------------------

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.1)
AC_INIT(htscodecs, 1.6.2)

# 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=6
VERS_REVISION=7
VERS_AGE=1
AC_SUBST(VERS_CURRENT)
AC_SUBST(VERS_REVISION)
Expand Down
2 changes: 1 addition & 1 deletion htscodecs/arith_dynamic.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2019-2022 Genome Research Ltd.
* Copyright (c) 2019-2022, 2025 Genome Research Ltd.
* Author(s): James Bonfield
*
* Redistribution and use in source and binary forms, with or without
Expand Down
4 changes: 2 additions & 2 deletions htscodecs/htscodecs.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021-2024 Genome Research Ltd.
* Copyright (c) 2021-2025 Genome Research Ltd.
* Author(s): James Bonfield
*
* Redistribution and use in source and binary forms, with or without
Expand Down Expand Up @@ -43,7 +43,7 @@
* Note currently this needs manually editing as it isn't automatically
* updated by autoconf.
*/
#define HTSCODECS_VERSION 100601
#define HTSCODECS_VERSION 100602

/*
* A const string form of the HTSCODECS_VERSION define.
Expand Down
2 changes: 1 addition & 1 deletion htscodecs/rANS_static4x16pr.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2017-2023 Genome Research Ltd.
* Copyright (c) 2017-2023, 2025 Genome Research Ltd.
* Author(s): James Bonfield
*
* Redistribution and use in source and binary forms, with or without
Expand Down