Skip to content

Commit

Permalink
Merge pull request #10 from BBVA/develop
Browse files Browse the repository at this point in the history
Bump version: 0.0.1 → 0.0.2
  • Loading branch information
champsblanc authored Apr 25, 2023
2 parents 2681ba9 + d961ff0 commit 8dd9388
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@

[bumpversion]
current_version = 0.0.1
current_version = 0.0.2
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(-(?P<release>\w+)\.(?P<build>\d+))?
serialize =
{major}.{minor}.{patch}-{release}.{build}
Expand All @@ -12,4 +11,5 @@ tag = True

[bumpversion:file:README.md]

[bumpversion:file:docs/index.md]
[bumpversion:file:docs/index.md]

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.1-blue)
![](https://img.shields.io/badge/latest-0.0.2-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.1-blue)
![](https://img.shields.io/badge/latest-0.0.2-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.1'
__version__ = '0.0.2'

from .explainers.counter_fact_basic import CounterFactualExplainerBasic
from .explainers.shuffle_importance import ShuffleImportanceExplainer
Expand Down

0 comments on commit 8dd9388

Please sign in to comment.