diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c325e3..96f7d94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,10 @@ To release a new version (e.g. from `1.0.0` -> `2.0.0`): ## [Unreleased] +## [0.1.4] - 2024-01-11 + +### Allow automatic model creation from PyMC + ## [0.1.3] - 2024-01-10 ### Allow automatic model creation from numpyro and TFP @@ -38,7 +42,8 @@ To release a new version (e.g. from `1.0.0` -> `2.0.0`): ### Initial release -[Unreleased]: https://github.com/jax-ml/bayeux/compare/v0.1.3...HEAD +[Unreleased]: https://github.com/jax-ml/bayeux/compare/v0.1.4...HEAD +[0.1.4]: https://github.com/jax-ml/bayeux/releases/tag/v0.1.4 [0.1.3]: https://github.com/jax-ml/bayeux/releases/tag/v0.1.3 [0.1.2]: https://github.com/jax-ml/bayeux/releases/tag/v0.1.2 [0.1.1]: https://github.com/jax-ml/bayeux/releases/tag/v0.1.1 diff --git a/bayeux/__init__.py b/bayeux/__init__.py index 81130ec..893857e 100644 --- a/bayeux/__init__.py +++ b/bayeux/__init__.py @@ -16,7 +16,7 @@ # A new PyPI release will be pushed everytime `__version__` is increased # When changing this, also update the CHANGELOG.md -__version__ = '0.1.3' +__version__ = '0.1.4' # Note: import as is required for names to be exported. # See PEP 484 & https://github.com/google/jax/issues/7570