diff options
| author | Vasile Vilvoiu <vasi@vilvoiu.ro> | 2021-07-22 22:40:05 +0300 |
|---|---|---|
| committer | Vasile Vilvoiu <vasi@vilvoiu.ro> | 2021-07-22 22:40:05 +0300 |
| commit | 506dcd63779e86baf2ac9d781061bd26d138cf40 (patch) | |
| tree | f8774d669e147e3cb0f6559a8d42a2ae5f4c563b | |
| parent | 0b170434b41b473341e8896869a95381bc1c2fbb (diff) | |
Bump to 0.9.2.
| -rw-r--r-- | CHANGELOG.md | 13 | ||||
| -rw-r--r-- | CMakeLists.txt | 2 |
2 files changed, 14 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 4607b76..25d6654 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,19 @@ 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.2] - 2021-07-22 +### Added +- Unit tests. +- Header file comments. + +### Removed +- Removed `spdlog` as a dependency due to the `fmt 8.0.0` debacle. + +### Fixed +- \[SERIOUS\] Window function term computation ([commit](https://github.com/rimio/specgram/commit/46f0cc9395ffc841626d9242238868383c146233)). +- Axes ticks computation is now much more refined. +- Assertion fail when frequency band and window size are very small. + ## [0.9.1] - 2021-07-16 ### Added - Support for `-` as input or output filename, indicating `stdin`/`stdout`. diff --git a/CMakeLists.txt b/CMakeLists.txt index ba7b6e7..1a73ca1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ project (specgram VERSION 1.0.0 LANGUAGES CXX) # Version set (VERSION_MAJOR 0) set (VERSION_MINOR 9) -set (VERSION_PATCH 1) +set (VERSION_PATCH 2) # C++20 set(CMAKE_CXX_STANDARD 20) |
