From 4e24253f6270172f8f4644d8eb9ecfce9bb9d9ee Mon Sep 17 00:00:00 2001 From: Rui Vieira Date: Mon, 24 Apr 2023 11:19:15 +0100 Subject: [PATCH] Release 0.2.11 (#152) * Bump version to 0.2.11 * Update CHANGELOG.md --- CHANGELOG.md | 8 ++++++++ README.md | 2 +- pyproject.toml | 2 +- src/trustyai/version.py | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f7a03a..da2b601 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this project will be documented in this file. +## [0.2.11] - 2023-04-24 + + +### Bug Fixes + + +- Fixed null pointer error for Numpy inputs to Tyrus ([#149](https://github.com/trustyai-explainability/trustyai-explainability-python/pull/149)) + ## [0.2.10] - 2023-04-13 ## [0.2.9] - 2023-02-23 diff --git a/README.md b/README.md index c2ef95c..5a9a045 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -![version](https://img.shields.io/badge/version-0.2.10-green) [![Tests](https://github.com/trustyai-python/module/actions/workflows/workflow.yml/badge.svg)](https://github.com/trustyai-python/examples/actions/workflows/workflow.yml) +![version](https://img.shields.io/badge/version-0.2.11-green) [![Tests](https://github.com/trustyai-python/module/actions/workflows/workflow.yml/badge.svg)](https://github.com/trustyai-python/examples/actions/workflows/workflow.yml) # python-trustyai diff --git a/pyproject.toml b/pyproject.toml index fd731ae..e1b2b28 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "trustyai" -version = "0.2.10" +version = "0.2.11" description = "Python bindings to the TrustyAI explainability library." authors = [{ name = "Rui Vieira", email = "rui@redhat.com" }] license = { file = "LICENSE" } diff --git a/src/trustyai/version.py b/src/trustyai/version.py index 2a0771b..5088f0b 100644 --- a/src/trustyai/version.py +++ b/src/trustyai/version.py @@ -1,2 +1,2 @@ """TrustyAI version""" -__version__ = "0.2.10" +__version__ = "0.2.11"