From b1277ff2279671bc3cff94a130e8c198ecaa3229 Mon Sep 17 00:00:00 2001 From: Colin Carroll Date: Fri, 12 Jan 2024 13:04:08 -0800 Subject: [PATCH] Actually bump version number, not just changelog. PiperOrigin-RevId: 597929592 --- bayeux/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bayeux/__init__.py b/bayeux/__init__.py index 893857e..e8ef4b2 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.4' +__version__ = '0.1.5' # Note: import as is required for names to be exported. # See PEP 484 & https://github.com/google/jax/issues/7570