From 8e14a468ef258ebd1587db9f4001d79c4dc5f742 Mon Sep 17 00:00:00 2001 From: AxeldeRomblay Date: Tue, 24 Nov 2020 18:40:56 +0100 Subject: [PATCH 1/4] [NEW] MLBox 0.8.6 version --- VERSION.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION.txt b/VERSION.txt index 7ada0d3..7fc2521 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -0.8.5 +0.8.6 From 6c864bc869e4c27998610e615bb5e5512554dbcf Mon Sep 17 00:00:00 2001 From: AxeldeRomblay Date: Tue, 24 Nov 2020 18:41:45 +0100 Subject: [PATCH 2/4] [UPD] add mlbox version info --- mlbox/__init__.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mlbox/__init__.py b/mlbox/__init__.py index a4cd2b1..c0b6676 100644 --- a/mlbox/__init__.py +++ b/mlbox/__init__.py @@ -1,5 +1,8 @@ # -*- coding: utf-8 -*- +with open('../VERSION.txt') as version_file: + __version__ = version_file.read() + __author__ = """Axel ARONIO DE ROMBLAY""" __email__ = 'axelderomblay@gmail.com' @@ -7,4 +10,4 @@ from .encoding import * from .optimisation import * from .prediction import * -from .model import * +from .model import * \ No newline at end of file From f5efd1e50620d66ec717fa5d4ca3122c11919694 Mon Sep 17 00:00:00 2001 From: AxeldeRomblay Date: Tue, 24 Nov 2020 18:42:13 +0100 Subject: [PATCH 3/4] [UPD] update history --- docs/history.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/history.rst b/docs/history.rst index b4abe22..076e703 100644 --- a/docs/history.rst +++ b/docs/history.rst @@ -102,3 +102,7 @@ History 0.8.5 (2020-08-25) ------------------ * minor fix (package dependencies) + +0.8.6 (2020-11-24) +------------------ +* mlbox version info \ No newline at end of file From aeda1bf02995862dec2d73777b524caf59630a87 Mon Sep 17 00:00:00 2001 From: AxeldeRomblay Date: Tue, 24 Nov 2020 18:43:34 +0100 Subject: [PATCH 4/4] [NEW] MLBox 0.8.6 version --- VERSION.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION.txt b/VERSION.txt index 7fc2521..120f532 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -0.8.6 +0.8.6 \ No newline at end of file