commit 27642d0631ace9e7c07cbb42c41287cba2aa9d2d
parent 4ab363e4d82bc8007e81df345e8e293138409f94
Author: [email protected] <[email protected]>
Date: Wed, 4 Mar 2020 13:00:18 +0000
KFR 4.1
Diffstat:
4 files changed, 27 insertions(+), 4 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
@@ -1,5 +1,29 @@
# Changelog
+## 4.1.0
+
+2020-03-04
+
+#### Added
+
+- MSVC2019 support (16.4.4 is required)
+- Stateless short_fir expression (thanks to https://github.com/slarew)
+- `biquad_filter` constructor taking `std::vector<biquad_params<T>>` (thanks to https://github.com/BenjaminNavarro)
+- `cabssqr` function (thanks to https://github.com/slarew)
+- `moving_sum` expression (thanks to https://github.com/slarew)
+- `gen_expj` generator (thanks to https://github.com/slarew)
+
+#### Changed
+- `cdirect_t{}` is now allowed in real dft plan methods for compatibility
+- complex support for `convolve_filter` (thanks to https://github.com/slarew)
+
+#### Fixed
+
+- GCC debug build (thanks to https://github.com/BenjaminNavarro)
+- `is_invocable_r_impl` fallback for missing C++17 feature
+- `std::complex` compatibility (thanks to https://github.com/slarew)
+- Various CI fixes
+
## 4.0.0
2019-12-05
diff --git a/README.md b/README.md
@@ -13,7 +13,7 @@ Compiler support:



-
+
https://www.kfr.dev
@@ -50,7 +50,6 @@ Some C++17 library features will be emulated if not present in the standard libr
### Release notes
-* MSVC support is limited to MSVC2017 due to ICE in MSVC2019. Once fixed, support will be added
* DFT is limited to Clang due to ICE in MSVC and broken AVX optimization in GCC 8 and 9. Once fixed, support will be added
## What's new in KFR 3.0
diff --git a/include/kfr/capi.h b/include/kfr/capi.h
@@ -77,7 +77,7 @@ extern "C"
KFR_ARCH_AVX512 = 8,
};
-#define KFR_HEADERS_VERSION 40000
+#define KFR_HEADERS_VERSION 40100
KFR_API_SPEC const char* kfr_version_string();
KFR_API_SPEC uint32_t kfr_version();
diff --git a/include/kfr/kfr.h b/include/kfr/kfr.h
@@ -9,7 +9,7 @@
#include "cident.h"
#define KFR_VERSION_MAJOR 4
-#define KFR_VERSION_MINOR 0
+#define KFR_VERSION_MINOR 1
#define KFR_VERSION_PATCH 0
#define KFR_VERSION_LABEL ""