Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions pyproject.toml
Comment thread
Agustin-Picard marked this conversation as resolved.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "xplique"
version = "2.0.0"
version = "2.0.1"
description = "Explanations toolbox for TensorFlow 2"
readme = "README.md"
requires-python = ">=3.10,<3.14"
Expand Down Expand Up @@ -92,15 +92,14 @@ include = ["xplique*"]
"xplique.features_visualizations" = ["spectrum_decorrelated.npy"]

[tool.bumpversion]
current_version = "2.0.0"
current_version = "2.0.1"
commit = true
tag = false

[[tool.bumpversion.files]]
filename = "pyproject.toml"

[[tool.bumpversion.files]]
filename = "xplique/__init__.py"
search = '__version__ = "{current_version}"'
replace = '__version__ = "{new_version}"'

[tool.ruff]
line-length = 100
Expand Down
2 changes: 1 addition & 1 deletion xplique/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
techniques
"""

__version__ = "2.0.0"
__version__ = "2.0.1"

from . import attributions, commons, concepts, example_based, features_visualizations, plots
from .commons import Tasks
Expand Down
Loading