diff --git a/docs/news.rst b/docs/news.rst index 50e6ed1..0f6708d 100644 --- a/docs/news.rst +++ b/docs/news.rst @@ -5,6 +5,21 @@ Release History .. towncrier release notes start +v1.6.0 (2024-04-18) +------------------- + +Features - 1.6.0 +~~~~~~~~~~~~~~~~ +- Add a new --fail-on-increase option that fails a test with the ``limit_memory`` marker if it uses more memory than its last successful run. (:issue:`91`) +- Use aggregated capture files, reducing the amount of temporary disk space required in order to run tests. (:issue:`107`) +- Add a new ``current_thread_only`` keyword argument to the ``limit_memory`` and + ``limit_leaks`` markers to ignore all allocations made in threads other than + the one running the test. (:issue:`117`) + +Bug Fixes - 1.6.0 +~~~~~~~~~~~~~~~~~ +- Fix the generation of histograms when the tests performed zero-byte allocations. (:issue:`113`) + v1.5.0 (2023-08-23) ------------------- diff --git a/docs/news/107.feature.rst b/docs/news/107.feature.rst deleted file mode 100644 index 2998b7a..0000000 --- a/docs/news/107.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Use aggregated capture files, reducing the amount of temporary disk space required in order to run tests. diff --git a/docs/news/113.bugfix.rst b/docs/news/113.bugfix.rst deleted file mode 100644 index c2dab96..0000000 --- a/docs/news/113.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix the generation of histograms when the tests performed zero-byte allocations. diff --git a/docs/news/117.feature.rst b/docs/news/117.feature.rst deleted file mode 100644 index 37db920..0000000 --- a/docs/news/117.feature.rst +++ /dev/null @@ -1,3 +0,0 @@ -Add a new ``current_thread_only`` keyword argument to the ``limit_memory`` and -``limit_leaks`` markers to ignore all allocations made in threads other than -the one running the test. diff --git a/docs/news/91.feature.rst b/docs/news/91.feature.rst deleted file mode 100644 index 13070d3..0000000 --- a/docs/news/91.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Add a new --fail-on-increase option that fails a test with the ``limit_memory`` marker if it uses more memory than its last successful run.