Skip to content

Commit 58fe561

Browse files
authored
Update version to 0.4.0 (#195)
* Update version to 0.4.0 * Fix CHANGELOG.md * Fix CHANGELOG.md PR links
1 parent a79da04 commit 58fe561

File tree

4 files changed

+33
-3
lines changed

4 files changed

+33
-3
lines changed

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,36 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.4.0] - 2024-01-15
6+
7+
- feat: Publish using PyPi Trusted Providers (#[183](https://github.com/trustyai-explainability/trustyai-explainability-python/pull/183))
8+
- Update README.md ([#184](https://github.com/trustyai-explainability/trustyai-explainability-python/pull/184))
9+
- Update pyarrow and pillow dependencies ([#187](https://github.com/trustyai-explainability/trustyai-explainability-python/pull/187))
10+
- Add WER metric ([#189](https://github.com/trustyai-explainability/trustyai-explainability-python/pull/189))
11+
- Change WER signature ([#190](https://github.com/trustyai-explainability/trustyai-explainability-python/pull/190))
12+
- Add Levenshtein distance ([#191](https://github.com/trustyai-explainability/trustyai-explainability-python/pull/191))
13+
- fix typo in tutorial.rst ([#193](https://github.com/trustyai-explainability/trustyai-explainability-python/pull/193))
14+
15+
## [0.3.0] - 2023-08-01
16+
17+
This is the first version of Python TrustyAI to include support for external explainability algorithms.
18+
19+
In this release we've included AIX360's `TSICE`, `TSLime` and `TSSaliency` time-series explainers.
20+
To use these explainers TrustyAI's extra dependencies must be installed with `pip install trustyai[extras]`.
21+
22+
- Refactor TrustyAI fairness metrics namespaces ([#156](https://github.com/trustyai-explainability/trustyai-explainability-python/pull/156))
23+
- Upgrade pyarrow dependency ([#159](https://github.com/trustyai-explainability/trustyai-explainability-python/pull/159))
24+
- Initial support for external algorithms ([#160](https://github.com/trustyai-explainability/trustyai-explainability-python/pull/160))
25+
- Replace deprecated requirements file ([#166](https://github.com/trustyai-explainability/trustyai-explainability-python/pull/166))
26+
- Update date, logo and favicon ([#168](https://github.com/trustyai-explainability/trustyai-explainability-python/pull/168))
27+
- Support TSICE explanations as plots ([#169](https://github.com/trustyai-explainability/trustyai-explainability-python/pull/169))
28+
- Add TSSaliency to Python TrustyAI ([#172](https://github.com/trustyai-explainability/trustyai-explainability-python/pull/172))
29+
- Add TSLime explainer by ([#174](https://github.com/trustyai-explainability/trustyai-explainability-python/pull/174))
30+
- Update TSSaliency plots to include smoothing ([#176](https://github.com/trustyai-explainability/trustyai-explainability-python/pull/176))
31+
- Fix invalid Development Status ([#178](https://github.com/trustyai-explainability/trustyai-explainability-python/pull/178))
32+
- Update direct dependency to released dependency ([#179](https://github.com/trustyai-explainability/trustyai-explainability-python/pull/179))
33+
34+
535
## [0.2.12] - 2023-04-24
636

737

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![version](https://img.shields.io/badge/version-0.3.0-green) [![Tests](https://github.com/trustyai-python/module/actions/workflows/workflow.yml/badge.svg)](https://github.com/trustyai-python/examples/actions/workflows/workflow.yml)
1+
![version](https://img.shields.io/badge/version-0.4.0-green) [![Tests](https://github.com/trustyai-python/module/actions/workflows/workflow.yml/badge.svg)](https://github.com/trustyai-python/examples/actions/workflows/workflow.yml)
22

33
# python-trustyai
44

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "trustyai"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
description = "Python bindings to the TrustyAI explainability library."
55
authors = [{ name = "Rui Vieira", email = "[email protected]" }]
66
license = { text = "Apache License Version 2.0" }

src/trustyai/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""TrustyAI version"""
2-
__version__ = "0.3.0"
2+
__version__ = "0.4.0"

0 commit comments

Comments
 (0)