From 4a8c8daf4eb628ba3820a13c0bdb2fcc6d964f5d Mon Sep 17 00:00:00 2001 From: Alexey Khudyakov Date: Tue, 21 Jan 2025 20:32:15 +0300 Subject: [PATCH] Prepare 0.16.3.0 release --- changelog.md | 15 +++++++++++++-- statistics.cabal | 2 +- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/changelog.md b/changelog.md index 878c51d..35a9bb6 100644 --- a/changelog.md +++ b/changelog.md @@ -1,6 +1,17 @@ -## Changes in NEXT_VERSIONS +## Changes in 0.16.3.0 - * Computation of `rSquare` has special case for case when data variation is 0. + * `S.Sample.correlation`, `S.Sample.covariance`, + `S.Correlation.pearson` do not allocate temporary arrays. + + * Variants of correlation which take two vectors as input are added: + `S.Sample.correlation2`, `S.Sample.covariance2`, `S.Correlation.pearson2`, + `S.Correlation.spearman2`. + + * Contexts for `S.Function.indexed`, `S.Correlation.spearman`, `S.pairedTTest`, + `S.Sample.correlation`, `S.Sample.covariance`, reduced. + + * Computation of `rSquare` in linear regression has special case for case when + data variation is 0. * Doctests added. diff --git a/statistics.cabal b/statistics.cabal index 2f341a4..1d933ec 100644 --- a/statistics.cabal +++ b/statistics.cabal @@ -2,7 +2,7 @@ cabal-version: 3.0 build-type: Simple name: statistics -version: 0.16.2.1 +version: 0.16.3.0 synopsis: A library of statistical types, data, and functions description: This library provides a number of common functions and types useful