summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVasile Vilvoiu <vasi@vilvoiu.ro>2023-05-06 21:21:34 +0300
committerVasile Vilvoiu <vasi@vilvoiu.ro>2023-05-06 21:21:34 +0300
commitfc328b7e205c3272075f215361e080db06e25b30 (patch)
treefd5320141b6b2458cf651c27e7230b6d136ba7df
parentc2d00c0aeb6908dd22ee8c0134d0f857b522e4a6 (diff)
Bump to 0.9.3.
-rw-r--r--CHANGELOG.md11
-rw-r--r--CMakeLists.txt2
2 files changed, 12 insertions, 1 deletions
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)