From a77d3c489a38ebf3c449a3850b6ac4076f9a95bc Mon Sep 17 00:00:00 2001 From: Ruan Comelli Date: Tue, 20 Jul 2021 14:59:23 -0300 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.9.2=20=E2=86=92=200.9.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 10 ++++++++++ VERSION | 2 +- boiling_learning/io/storage.py | 3 +-- pyproject.toml | 2 +- 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f0e04617..aaff3cd3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## v0.9.3 (2021-07-20) + +### Feat + +- **scripts**: define script for loading cases + +### Refactor + +- pre-import common subpackages directly on the package's __init__ file + ## v0.9.2 (2021-07-14) ### Fix diff --git a/VERSION b/VERSION index 2003b639..965065db 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.9.2 +0.9.3 diff --git a/boiling_learning/io/storage.py b/boiling_learning/io/storage.py index fd89a8ed..4262a990 100644 --- a/boiling_learning/io/storage.py +++ b/boiling_learning/io/storage.py @@ -1,11 +1,10 @@ from importlib import import_module -from typing import Any, Dict, TypeVar +from typing import Any, Dict from plum import Dispatcher from boiling_learning.utils.table_dispatch import table_dispatch -_T = TypeVar('_T') dispatch = Dispatcher() diff --git a/pyproject.toml b/pyproject.toml index a8447225..06b689f7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,7 +16,7 @@ plugins = "numpy.typing.mypy_plugin" [tool.commitizen] tag_format = "v$major.$minor.$patch$prerelease" update_changelog_on_bump = true -version = "0.9.2" +version = "0.9.3" version_files = [ "VERSION", ]