Skip to content

Commit

Permalink
Bump version: 0.0.1 → 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
flaport committed Sep 6, 2023
1 parent eccef51 commit dc85532
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.1
current_version = 0.0.2
commit = True
tag = True
tag_name = {new_version}
Expand Down
6 changes: 3 additions & 3 deletions python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "eigs"
version = "0.0.1"
version = "0.0.2"
edition = "2021"
authors = ["Floris Laporte <floris.laporte@gmail.com>"]
readme = "README.md"
Expand All @@ -15,7 +15,7 @@ name = "eigs"
crate-type = ["lib", "cdylib"]

[dependencies]
eigs_rs = {version="0.0.1", package="eigs"}
eigs_rs = {version="0.0.2", package="eigs"}
num-complex = "0.4.4"
pyo3 = {version="0.19.2", features=["extension-module"]}
umfpack-rs = "0.0.1"
umfpack-rs = "0.0.1"
2 changes: 1 addition & 1 deletion python/eigs/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__author__ = "Floris Laporte"
__version__ = "0.0.1"
__version__ = "0.0.2"

import numpy as np
from scipy.sparse import csc_matrix
Expand Down
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "eigs"
version = "0.0.1"
version = "0.0.2"
authors = [
{ name = "Floris Laporte", email = "floris.laporte@gmail.com" },
]
Expand Down
2 changes: 1 addition & 1 deletion rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "eigs"
version = "0.0.1"
version = "0.0.2"
edition = "2021"
authors = ["Floris Laporte <floris.laporte@gmail.com>"]
readme = "README.md"
Expand Down

0 comments on commit dc85532

Please sign in to comment.