Skip to content

Commit

Permalink
Version updated from 0.0.0 to 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mfschubert committed Sep 11, 2023
1 parent 4d97dde commit 958dadb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.bumpversion]
current_version = "0.0.0"
current_version = "0.1.0"
commit = true
commit_args = "--no-verify"
tag = true
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# sparsejac 0.0.0
# sparsejac 0.1.0
Efficient forward- and reverse-mode sparse Jacobians using Jax.

Sparse Jacobians are frequently encountered in the simulation of physical systems. Jax tranformations `jacfwd` and `jacrev` make it easy to compute dense Jacobians, but these are wasteful when the Jacobian is sparse. `sparsejac` provides a function to more efficiently compute the Jacobian if its sparsity is known. It makes use of the recently-introduced `jax.experimental.sparse` module.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]

name = "sparsejac"
version = "0.0.0"
version = "0.1.0"
description = "Efficient forward- and reverse-mode sparse Jacobians using Jax."
keywords = ["jax", "jacobian", "sparse"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion src/sparsejac/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""sparsejac - Efficient forward- and reverse-mode sparse Jacobians using Jax."""

__version__ = "0.0.0"
__version__ = "0.1.0"
__author__ = "Martin Schubert <[email protected]>"

from sparsejac.sparsejac import jacrev as jacrev
Expand Down

0 comments on commit 958dadb

Please sign in to comment.