diff --git a/Changelog.md b/Changelog.md index 44a728604..85ecdbfa1 100644 --- a/Changelog.md +++ b/Changelog.md @@ -10,7 +10,56 @@ ### Deprecation -# Changelog +## 0.9.2 + +### New features + +* Implement `censored()` (#581) +* Add `Formula` class (#585) +* Add common numpy transforms to extra_namespace (#589) +* Add `AsymmetricLaplace` family for Quantile Regression (#591) +* Add 'transforms' argument to `plot_cap()` (#594) +* Add panel covariates to `plot_cap()` and make it more flexible (#596) + +### Maintenance and fixes + +* Reimplemented predictions to make better usage of xarray data structures (#573) +* Keep 0 dimensional parameters as 0 dimensional instead of 1 dimensional (#575) +* Refactor terms for modularity and extensibility (#582) +* Remove seed argument from `model.initial_point()` (#592) +* Add build check function on prior predictive and plot prior (#605) + +### Documentation + +* Add quantile regression example (#608) + +### Deprecation + +* Remove `automatic_priors` argument from `Model` (#603) +* Remove string option for data input in `Model` (#604) + +## 0.9.1 + +### New features + +* Add support for jax sampling via numpyro and blackjax samplers (#526) +* Add Laplace family (#524) +* Improve Laplace computation and integration (#555 and #563) + +### Maintenance and fixes + +* Ensure order variable is preserved when ploting priors (#529) +* Treat offset accordingly (#534) +* Refactor tests to share data generation code (#531) + +### Documentation + +* Update documentation following good inferencedata practices (#537) +* Add logos to repo and docs (#542) + +### Deprecation + +* Deprecate method argument in favor of inference_method (#554) ## 0.9.0 diff --git a/bambi/version.py b/bambi/version.py index d69d16e98..a2fecb457 100644 --- a/bambi/version.py +++ b/bambi/version.py @@ -1 +1 @@ -__version__ = "0.9.1" +__version__ = "0.9.2" diff --git a/docs/examples.rst b/docs/examples.rst index 993feee30..01d09ca01 100644 --- a/docs/examples.rst +++ b/docs/examples.rst @@ -22,4 +22,5 @@ Examples notebooks/beta_regression notebooks/categorical_regression notebooks/circular_regression + notebooks/quantile_regression diff --git a/requirements.txt b/requirements.txt index 3a6b2b094..e367ce302 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,4 +4,4 @@ numpy>1.22 pandas>=1.0.0 pymc>=4.0.0 scipy>=1.7.0 -setuptools>47.1.0 +setuptools>47.1.0 \ No newline at end of file