From e68d7b24bd27e11044ac21fddcd4e7eced3d40d0 Mon Sep 17 00:00:00 2001 From: Rodrigo Gonzalez Date: Mon, 21 Aug 2023 14:45:37 -0400 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.1.0=20=E2=86=92=200.2.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 17 +++++++++++++++++ pyproject.toml | 4 ++-- src/shap_app/__init__.py | 2 +- 3 files changed, 20 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d3c4abd..512215c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,23 @@ +## v0.2.0 (2023-08-21) + +### Feat + +- **main**: add cli and entry point to package (#16) +- **loaders**: add additionally functionality to loaders (#13) +- **loaders**: update load_data function to also accept paths, and add more contents to readme (#12) + +### Refactor + +- **shap components**: refactor to use dynamic sizes for all figures (#14) +- **datasets**: update docstrings and add run streamlit app comma… (#11) +- **components**: refactor docstrings and simplify functions where possib (#10) +- **webapp**: implement number of bins determined by the size of the dataset, and update docstrings (#9) +- **catboost**: remove catboost training info, that can stay local (#8) +- **catboost**: remove catboost training info, that can stay local (#7) + ## v0.1.0 (2023-08-20) ### Feat diff --git a/pyproject.toml b/pyproject.toml index 0ff3f8e..8028470 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "shap_app" -version = "0.1.0" +version = "0.2.0" description = "A project" authors = ["Rodrigo Gonzalez "] license = "MIT" @@ -102,7 +102,7 @@ mkdocstrings = "^0.22.0" [tool.commitizen] name = "cz_conventional_commits" -version = "0.1.0" +version = "0.2.0" tag_format = "v$version" version_scheme = "semver" version_provider = "poetry" diff --git a/src/shap_app/__init__.py b/src/shap_app/__init__.py index 3dc1f76..d3ec452 100644 --- a/src/shap_app/__init__.py +++ b/src/shap_app/__init__.py @@ -1 +1 @@ -__version__ = "0.1.0" +__version__ = "0.2.0"