From 2fe7d2d73d18d9c7072507d462737b372f9d56bf Mon Sep 17 00:00:00 2001 From: Michael Adams Date: Sat, 30 Mar 2024 09:57:05 -0700 Subject: [PATCH] Bumped the version number and updated the NEWS document. --- CMakeLists.txt | 2 +- NEWS.txt | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 85d2de56..aa155e81 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,7 +12,7 @@ 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 2) -set(JAS_VERSION_PATCH 2) +set(JAS_VERSION_PATCH 3) # 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 984606ef..1e07df9f 100644 --- a/NEWS.txt +++ b/NEWS.txt @@ -1,3 +1,8 @@ +4.2.3 (2024-03-30) +================== + +* Added a missing check in the JPC codec (#381). + 4.2.2 (2024-03-11) ==================