From 01cec97ffc0e97876402d2545218af458b8a5b6f Mon Sep 17 00:00:00 2001 From: Patricio Cerda Mardini Date: Mon, 27 Nov 2023 13:54:35 +0900 Subject: [PATCH] version bump: 0.0.16 --- pyproject.toml | 2 +- type_infer/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 3cb3478..61d3bf9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "type_infer" -version = "0.0.15" +version = "0.0.16" description = "Automated type inference for Machine Learning pipelines." authors = ["MindsDB Inc. "] license = "GPL-3.0" diff --git a/type_infer/__init__.py b/type_infer/__init__.py index e163350..2e45234 100644 --- a/type_infer/__init__.py +++ b/type_infer/__init__.py @@ -4,7 +4,7 @@ from type_infer import helpers -__version__ = '0.0.15' +__version__ = '0.0.16' __all__ = ['base', 'dtype', 'infer', 'helpers', '__version__']