Skip to content

Commit

Permalink
Merge pull request #17 from BBVA/develop
Browse files Browse the repository at this point in the history
Bumpversion
  • Loading branch information
champsblanc authored Sep 15, 2023
2 parents a4eab19 + 8186c51 commit 69ca4fa
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 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.2
current_version = 0.0.3
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(-(?P<release>\w+)\.(?P<build>\d+))?
serialize =
{major}.{minor}.{patch}-{release}.{build}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# mercury-explainability

[![](https://github.com/BBVA/mercury-explainability/actions/workflows/test.yml/badge.svg)](https://github.com/BBVA/mercury-explainability)
![](https://img.shields.io/badge/latest-0.0.2-blue)
![](https://img.shields.io/badge/latest-0.0.3-blue)

***mercury-explainability*** is a library with implementations of different state-of-the-art methods in the field of explainability. They are designed to work efficiently and to be easily integrated with the main Machine Learning frameworks.

Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# mercury-explainability

[![](https://github.com/BBVA/mercury-explainability/actions/workflows/test.yml/badge.svg)](https://github.com/BBVA/mercury-explainability)
![](https://img.shields.io/badge/latest-0.0.2-blue)
![](https://img.shields.io/badge/latest-0.0.3-blue)

***mercury-explainability*** is a library with implementations of different state-of-the-art methods in the field of explainability. They are designed to work efficiently and to be easily integrated with the main Machine Learning frameworks.

Expand Down
2 changes: 1 addition & 1 deletion mercury/explainability/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '0.0.2'
__version__ = '0.0.3'

from .explainers.counter_fact_basic import CounterFactualExplainerBasic
from .explainers.shuffle_importance import ShuffleImportanceExplainer
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "mercury-explainability"
license = {file = "LICENSE.txt"}
version = "0.0.2"
version = "0.0.3"
authors = [
{ name="Mercury Team", email="[email protected]" },
]
Expand Down

0 comments on commit 69ca4fa

Please sign in to comment.