From 6a5d65aef9c80e6accbfa52e70f89fb29bc89838 Mon Sep 17 00:00:00 2001 From: Michael Adams Date: Thu, 2 Jun 2022 21:10:20 -0700 Subject: [PATCH] Updated the NEWS document and bumped the version number. --- CMakeLists.txt | 2 +- NEWS.txt | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c2a85469..52ad5a86 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,7 @@ cmake_minimum_required(VERSION 3.12) # The major, minor, and micro version numbers of the project. set(JAS_VERSION_MAJOR 3) set(JAS_VERSION_MINOR 0) -set(JAS_VERSION_PATCH 3) +set(JAS_VERSION_PATCH 4) # 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 c96b75de..4791333a 100644 --- a/NEWS.txt +++ b/NEWS.txt @@ -1,3 +1,11 @@ +3.0.4 (2022-06-02) +================== + +* Eliminate some bogus calls to abort. +* Fix a typo in jas_safeui64_div (#323). +* Add some additional logging messages. +* Fix the source of a potential compiler warning (#321). + 3.0.3 (2022-03-15) ==================