From 674d815dd14b83c8c5097cc0f5eee036a7d94f30 Mon Sep 17 00:00:00 2001 From: Stephan Hoyer Date: Fri, 10 May 2024 07:02:57 -0700 Subject: [PATCH] Increment version number for JAX-CFD I would like to issue a new release to fix issues like https://github.com/google/jax-cfd/issues/226 PiperOrigin-RevId: 632484011 --- jax_cfd/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/jax_cfd/__init__.py b/jax_cfd/__init__.py index 9a28310..6569478 100644 --- a/jax_cfd/__init__.py +++ b/jax_cfd/__init__.py @@ -14,6 +14,6 @@ """Defines the JAX-CFD module for computational fluid dynamics.""" -__version__ = '0.2.0' +__version__ = '0.2.1' import jax_cfd.base diff --git a/setup.py b/setup.py index 60f5034..fe3d87f 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ setuptools.setup( name='jax-cfd', - version='0.2.0', + version='0.2.1', license='Apache 2.0', author='Google LLC', author_email='noreply@google.com',