From d15d752e9b6240795c0d42c664b89acf8c19c41c Mon Sep 17 00:00:00 2001 From: Ricardo Date: Tue, 9 Mar 2021 18:30:17 +0100 Subject: [PATCH] Add RELEASE-NOTE --- RELEASE-NOTES.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index ce4a7fc2c4d..8d35d8967bf 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -3,10 +3,12 @@ ## PyMC3 vNext (TBD) ### Breaking Changes - ⚠ Theano-PyMC has been replaced with Aesara, so all external references to `theano`, `tt`, and `pymc3.theanof` need to be replaced with `aesara`, `aet`, and `pymc3.aesaraf` (see [4471](https://github.com/pymc-devs/pymc3/pull/4471)). +- The `incomplete_beta` function in pymc3.distributions.dist_math was replaced by an equivalent fast vectorized `betainc` aesara op (see [4519](https://github.com/pymc-devs/pymc3/pull/4519)). ### New Features + `pm.math.cartesian` can now handle inputs that are themselves >1D (see [#4482](https://github.com/pymc-devs/pymc3/pull/4482)). + The `CAR` distribution has been added to allow for use of conditional autoregressions which often are used in spatial and network models. ++ The `logcdf` method of `Beta`, `StudentT`, `Binomial`, `NegativeBinomial` (and zero inflated variants) can now evaluate multiple values at once (see [4519](https://github.com/pymc-devs/pymc3/pull/4519)). + ... ### Maintenance