diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 3d557db..bbe4d88 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.6 +current_version = 0.2.7 commit = True tag = True tag_name = {new_version} diff --git a/klujax.cpp b/klujax.cpp index d1eade0..d3bccbd 100644 --- a/klujax.cpp +++ b/klujax.cpp @@ -1,4 +1,4 @@ -// version: 0.2.6 +// version: 0.2.7 // author: Floris Laporte #include diff --git a/klujax.py b/klujax.py index b51ef9c..3656729 100644 --- a/klujax.py +++ b/klujax.py @@ -1,6 +1,6 @@ """ klujax: a KLU solver for JAX """ -__version__ = "0.2.6" +__version__ = "0.2.7" __author__ = "Floris Laporte" __all__ = ["solve", "coo_mul_vec"] diff --git a/setup.py b/setup.py index 3b5f782..d45ce89 100644 --- a/setup.py +++ b/setup.py @@ -97,7 +97,7 @@ setup( name="klujax", - version="0.2.6", + version="0.2.7", author="Floris Laporte", author_email="floris.laporte@gmail.com", description="a KLU solver for JAX",