From fc328b7e205c3272075f215361e080db06e25b30 Mon Sep 17 00:00:00 2001 From: Vasile Vilvoiu Date: Sat, 6 May 2023 21:21:34 +0300 Subject: Bump to 0.9.3. --- CHANGELOG.md | 11 +++++++++++ CMakeLists.txt | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 25d6654..114b3af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.9.3] - 2023-05-06 +### Added +- Support to exit program with `Esc` key. +- Support to wait for input with `-S` or `--sleep_for_input`; program can now _not_ busywait on sparse input. +- Two new colormaps, `hot` and `inferno`; the latter is the new default. +- Support for in-source build. + +### Fixed +- Usage of bad version macros in generated header file. +- Various warnings and compilation issues on newer versions of `g++`. + ## [0.9.2] - 2021-07-22 ### Added - Unit tests. diff --git a/CMakeLists.txt b/CMakeLists.txt index 4ec9599..2d16186 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ project (specgram LANGUAGES CXX) # Version set (VERSION_MAJOR 0) set (VERSION_MINOR 9) -set (VERSION_PATCH 2) +set (VERSION_PATCH 3) # C++20 set(CMAKE_CXX_STANDARD 20) -- cgit v1.2.3