From fc30d743132694edc10564e0bdac18c32ca4e7f9 Mon Sep 17 00:00:00 2001 From: Colin Carroll Date: Wed, 3 Apr 2024 07:37:31 -0700 Subject: [PATCH] Push new python 3.9 compatible version. PiperOrigin-RevId: 621518240 --- CHANGELOG.md | 9 ++++++++- bayeux/__init__.py | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cb07ed3..1098ef0 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.10] - 2024-04-03 + +### Keep Python 3.9 compatibility. + ## [0.1.9] - 2024-02-27 ### Add programmatic access to algorithms @@ -64,7 +68,10 @@ 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.7...HEAD +[Unreleased]: https://github.com/jax-ml/bayeux/compare/v0.1.10...HEAD +[0.1.10]: https://github.com/jax-ml/bayeux/releases/tag/v0.1.10 +[0.1.9]: https://github.com/jax-ml/bayeux/releases/tag/v0.1.9 +[0.1.8]: https://github.com/jax-ml/bayeux/releases/tag/v0.1.8 [0.1.7]: https://github.com/jax-ml/bayeux/releases/tag/v0.1.7 [0.1.6]: https://github.com/jax-ml/bayeux/releases/tag/v0.1.6 [0.1.5]: https://github.com/jax-ml/bayeux/releases/tag/v0.1.5 diff --git a/bayeux/__init__.py b/bayeux/__init__.py index a7222ae..b2af432 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.9' +__version__ = '0.1.10' # Note: import as is required for names to be exported. # See PEP 484 & https://github.com/google/jax/issues/7570