From 1610da6df7d2dbed9921804f91047a8c342ef470 Mon Sep 17 00:00:00 2001 From: flaport Date: Tue, 19 Sep 2023 11:54:57 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.2.2=20=E2=86=92=200.2.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- klujax.cpp | 2 +- klujax.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index e7023a2..66de59e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.2 +current_version = 0.2.3 commit = True tag = True tag_name = {new_version} diff --git a/klujax.cpp b/klujax.cpp index 25306c0..6f93a6c 100644 --- a/klujax.cpp +++ b/klujax.cpp @@ -1,4 +1,4 @@ -// version: 0.2.2 +// version: 0.2.3 // author: Floris Laporte #include diff --git a/klujax.py b/klujax.py index 937f1a5..bf8c153 100644 --- a/klujax.py +++ b/klujax.py @@ -1,6 +1,6 @@ """ klujax: a KLU solver for JAX """ -__version__ = "0.2.2" +__version__ = "0.2.3" __author__ = "Floris Laporte" __all__ = ["solve", "coo_mul_vec"] diff --git a/setup.py b/setup.py index 554ac1b..111f6be 100644 --- a/setup.py +++ b/setup.py @@ -97,7 +97,7 @@ setup( name="klujax", - version="0.2.2", + version="0.2.3", author="Floris Laporte", author_email="floris.laporte@gmail.com", description="a KLU solver for JAX",