From 091d019c17740266f26b75356f86fb86df5b2377 Mon Sep 17 00:00:00 2001 From: Michael Adams Date: Sat, 12 Feb 2022 12:49:32 -0800 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 b6db3fe4..124b3449 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 0) +set(JAS_VERSION_PATCH 1) # 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 02408f6b..3cbb5deb 100644 --- a/NEWS.txt +++ b/NEWS.txt @@ -1,3 +1,8 @@ +3.0.1 (2022-02-12) +================== + +* Fix some build/portability issues (e.g., #317, #318). + 3.0.0 (2022-02-05) ==================