Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
Update RELEASE-NOTES.md

Mark 3.11.3 release as broken per discussion
  • Loading branch information
canyon289 committed Aug 23, 2021
1 parent 94d892c commit bfc3813
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 9 deletions.
22 changes: 14 additions & 8 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# Release Notes

## PyMC3 3.11.3 (19 August 2021)
## PyMC3 3.11.4 (20 August 2021)

### New Features
+ Generalized BART, bounded distributions like Binomial and Poisson can now be used as likelihoods (see [#4675](https://github.com/pymc-devs/pymc3/pull/4675), [#4709](https://github.com/pymc-devs/pymc3/pull/4709) and
[#4720](https://github.com/pymc-devs/pymc3/pull/4720)).
+ `plot_gp_dist` is now available at the package level: `pm.plot_gp_dist` ([see #4835](https://github.com/pymc-devs/pymc3/pull/4835)).
+ The experimental JAX sampling was removed. It will be included in the upcoming `v4` release ([see #4866](https://github.com/pymc-devs/pymc3/pull/4866)).
+ `pm.intX` no longer downcasts integers unnecessarily (see [#4569](https://github.com/pymc-devs/pymc3/pull/4569))

### Maintenance
+ A deprecation warning from the `semver` package we use for checking backend compatibility was dealt with (see [#4547](https://github.com/pymc-devs/pymc3/pull/4547)).
+ `theano.printing.pydotprint` is now hotfixed upon import (see [#4594](https://github.com/pymc-devs/pymc3/pull/4594)).
Expand All @@ -10,16 +18,14 @@
+ Remove `float128` dtype support (see [#4834](https://github.com/pymc-devs/pymc3/pull/4834)).
+ Use `to_tuple` function in `pm.fast_sample_posterior_predictive` to pass shape assertions (see [#4927](https://github.com/pymc-devs/pymc3/pull/4927)).

### New Features
+ Generalized BART, bounded distributions like Binomial and Poisson can now be used as likelihoods (see [#4675](https://github.com/pymc-devs/pymc3/pull/4675), [#4709](https://github.com/pymc-devs/pymc3/pull/4709) and
[#4720](https://github.com/pymc-devs/pymc3/pull/4720)).
+ `plot_gp_dist` is now available at the package level: `pm.plot_gp_dist` ([see #4835](https://github.com/pymc-devs/pymc3/pull/4835)).
+ The experimental JAX sampling was removed. It will be included in the upcoming `v4` release ([see #4866](https://github.com/pymc-devs/pymc3/pull/4866)).
+ `pm.intX` no longer downcasts integers unnecessarily (see [#4569](https://github.com/pymc-devs/pymc3/pull/4569))
**Release manager** for 3.11.4: Ravin Kumar ([@canyon289](https://github.com/canyon289))

## PyMC3 3.11.3 (19 August 2021)

**Release manager** for 3.11.3: Ravin Kumar ([@canyon289](https://github.com/canyon289))
### Maintenance
* Broken release. Refer to 3.11.4

**Release manager** for 3.11.3: Ravin Kumar ([@canyon289](https://github.com/canyon289))

## PyMC3 3.11.2 (14 March 2021)

Expand Down
2 changes: 1 addition & 1 deletion pymc3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.

# pylint: disable=wildcard-import
__version__ = "3.11.3"
__version__ = "3.11.4"

import logging
import multiprocessing as mp
Expand Down

0 comments on commit bfc3813

Please sign in to comment.