Skip to content

Commit

Permalink
Bump to 0.3.0
Browse files Browse the repository at this point in the history
flaport committed Nov 12, 2024
1 parent 91ad7ca commit 42e0ccc
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# KLUJAX
> version: 0.2.10
> version: 0.3.0
A sparse linear solver for JAX based on the efficient [KLU algorithm](https://ufdcimages.uflib.ufl.edu/UF/E0/01/17/21/00001/palamadai_e.pdf).

2 changes: 1 addition & 1 deletion klujax.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// version: 0.2.10
// version: 0.3.0
// Imports

#include "klu.h"
2 changes: 1 addition & 1 deletion klujax.py
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@

# Metadata ============================================================================

__version__ = "0.2.10"
__version__ = "0.3.0"
__author__ = "Floris Laporte"
__all__ = ["solve", "coo_mul_vec"]

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@ license = {file = "LICENSE"}
name = "klujax"
readme = "README.md"
requires-python = ">=3.8"
version = "0.2.10"
version = "0.3.0"

[project.optional-dependencies]
dev = [
@@ -75,7 +75,7 @@ message_template = "Bump to {new_version}"
tag_template = "{new_version}"

[tool.tbump.version]
current = "0.2.10"
current = "0.3.0"
regex = '''
(?P<major>\d+)
\.

0 comments on commit 42e0ccc

Please sign in to comment.