From 810c6131cb9c8bb5ed27c37726ca1b8ba0eaec5f Mon Sep 17 00:00:00 2001 From: Michael Adams Date: Mon, 5 Feb 2024 11:08:43 -0800 Subject: [PATCH] Updated the NEWS document and bumped the version number. --- CMakeLists.txt | 4 ++-- NEWS.txt | 12 ++++++++++++ 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 983bf190..c6925e41 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,8 +11,8 @@ cmake_minimum_required(VERSION 3.20) # The major, minor, and micro version numbers of the project. set(JAS_VERSION_MAJOR 4) -set(JAS_VERSION_MINOR 1) -set(JAS_VERSION_PATCH 2) +set(JAS_VERSION_MINOR 2) +set(JAS_VERSION_PATCH 0) # The shared library versioning information. # Guidelines on how to change this information can be found below. diff --git a/NEWS.txt b/NEWS.txt index 097e49ca..a74e6e0b 100644 --- a/NEWS.txt +++ b/NEWS.txt @@ -1,3 +1,15 @@ +4.2.0 (2024-02-05) +================== + +* Add the JAS_PACKAGING option to the CMake build in an attempt to allow + easier control over rpath settings by packagers of JasPer. +* Remove a number of obsolete scripts. +* Make some cosmetic changes to the code for the JPC codec in order + to improve readability (#371). +* Fix a portability bug related to threads/atomics. +* Replace some lingering uses of strtok in the JPC coder with jas_strtok, + since the use of strtok is problematic in multithreading contexts. + 4.1.2 (2024-01-11) ==================