From 841103c991da6868c21ff9e3fb1c97227e1b28b0 Mon Sep 17 00:00:00 2001 From: Ryan Volz Date: Fri, 12 Feb 2021 17:52:48 -0500 Subject: [PATCH] Updated CHANGELOG for 2.6.6 --- CHANGELOG.rst | 20 ++++++++++++++++++++ news/integer_math_only.rst | 23 ----------------------- news/warning_cleanup.rst | 25 ------------------------- 3 files changed, 20 insertions(+), 48 deletions(-) delete mode 100644 news/integer_math_only.rst delete mode 100644 news/warning_cleanup.rst diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 9a53f8f..a5687c9 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,26 @@ digital_rf Change Log .. current developments +v2.6.6 +==================== + +**Deprecated:** + +* The `digital_rf_get_unix_time` function is now deprecated, as it relies on a `long double` sample rate. Use `digital_rf_get_unix_time_rational` instead. + +**Fixed:** + +* Fix incorrect file bound calculation in `digital_rf_get_subdir_file` on platforms that have a `long double` that is different from amd64, notably at least the aarch64 ARM platform. This fixes a bug where writes failed with error messages "Failed to write data" and "Request index M before first expected index N". +* Regularized use of 64 bit integer types and their conversion to Python values, perhaps correcting behavior when compiled on 32-bit architectures. +* Cleaned up compiler warnings about comparing signed and unsigned values. +* Cleaned up testing warnings about invalid values in equals comparison. + +**Authors:** + +* Ryan Volz + + + v2.6.5 ==================== diff --git a/news/integer_math_only.rst b/news/integer_math_only.rst deleted file mode 100644 index 3e8f5ce..0000000 --- a/news/integer_math_only.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* - -**Changed:** - -* - -**Deprecated:** - -* The `digital_rf_get_unix_time` function is now deprecated, as it relies on a `long double` sample rate. Use `digital_rf_get_unix_time_rational` instead. - -**Removed:** - -* - -**Fixed:** - -* Fix incorrect file bound calculation in `digital_rf_get_subdir_file` on platforms that have a `long double` that is different from amd64, notably at least the aarch64 ARM platform. This fixes a bug where writes failed with error messages "Failed to write data" and "Request index M before first expected index N". - -**Security:** - -* diff --git a/news/warning_cleanup.rst b/news/warning_cleanup.rst deleted file mode 100644 index a2b42c7..0000000 --- a/news/warning_cleanup.rst +++ /dev/null @@ -1,25 +0,0 @@ -**Added:** - -* - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* Regularized use of 64 bit integer types and their conversion to Python values, perhaps correcting behavior when compiled on 32-bit architectures. -* Cleaned up compiler warnings about comparing signed and unsigned values. -* Cleaned up testing warnings about invalid values in equals comparison. - -**Security:** - -*