From 5111d069b6a2a3a74eb04e5077e49c246762d994 Mon Sep 17 00:00:00 2001 From: Thieu Nguyen Date: Fri, 14 Jul 2023 10:47:14 +0700 Subject: [PATCH] Release new version 0.1.8 --- CITATION.cff | 4 ++-- ChangeLog.md | 6 ++++++ MANIFEST.in | 3 ++- README.md | 4 ++-- docs/source/index.rst | 2 +- docs/source/pages/quick_start.rst | 2 +- mafese/__init__.py | 2 +- setup.py | 2 +- 8 files changed, 16 insertions(+), 9 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index c9f504e..a23c13d 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -5,7 +5,7 @@ authors: given-names: "Nguyen" orcid: "https://orcid.org/0000-0001-9994-8747" title: "MAFESE: Metaheuristic Algorithm for Feature Selection - An Open Source Python Library" -version: 0.1.7 +version: 0.1.8 doi: 10.5281/zenodo.7969042 -date-released: 2023-07-13 +date-released: 2023-07-14 url: "https://github.com/thieu1995/mafese" diff --git a/ChangeLog.md b/ChangeLog.md index c74188e..6a08b56 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,3 +1,9 @@ +# Version 0.1.8 + ++ Fix bug load data from library. + +--------------------------------------------------------------------- + # Version 0.1.7 + Remove some unknown datasets diff --git a/MANIFEST.in b/MANIFEST.in index 4a2795a..d7f2225 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,3 @@ include README.md LICENSE CODE_OF_CONDUCT.md ChangeLog.md examples.md -include mafese/data/*.csv +include mafese/data/reg/*.csv +include mafese/data/cls/*.csv diff --git a/README.md b/README.md index 3b7d7f2..ad482f0 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ --- -[![GitHub release](https://img.shields.io/badge/release-0.1.7-yellow.svg)](https://github.com/thieu1995/mafese/releases) +[![GitHub release](https://img.shields.io/badge/release-0.1.8-yellow.svg)](https://github.com/thieu1995/mafese/releases) [![Wheel](https://img.shields.io/pypi/wheel/gensim.svg)](https://pypi.python.org/pypi/mafese) [![PyPI version](https://badge.fury.io/py/mafese.svg)](https://badge.fury.io/py/mafese) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/mafese.svg) @@ -43,7 +43,7 @@ using meta-heuristic algorithms. Install the [current PyPI release](https://pypi.python.org/pypi/mafese): ```sh -$ pip install mafese==0.1.7 +$ pip install mafese==0.1.8 ``` ### Install directly from source code diff --git a/docs/source/index.rst b/docs/source/index.rst index b601fe6..a3f5509 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -6,7 +6,7 @@ Welcome to MAFESE's documentation! ================================== -.. image:: https://img.shields.io/badge/release-0.1.7-yellow.svg +.. image:: https://img.shields.io/badge/release-0.1.8-yellow.svg :target: https://github.com/thieu1995/mafese/releases .. image:: https://img.shields.io/pypi/wheel/gensim.svg diff --git a/docs/source/pages/quick_start.rst b/docs/source/pages/quick_start.rst index b9a9e39..96defc0 100644 --- a/docs/source/pages/quick_start.rst +++ b/docs/source/pages/quick_start.rst @@ -4,7 +4,7 @@ Installation * Install the `current PyPI release `_:: - $ pip install mafese==0.1.7 + $ pip install mafese==0.1.8 * Install directly from source code:: diff --git a/mafese/__init__.py b/mafese/__init__.py index 6e53328..6d80dc2 100644 --- a/mafese/__init__.py +++ b/mafese/__init__.py @@ -4,7 +4,7 @@ # Github: https://github.com/thieu1995 % # --------------------------------------------------% -__version__ = "0.1.7" +__version__ = "0.1.8" from mafese.utils.data_loader import Data, get_dataset from mafese.filter import FilterSelector diff --git a/setup.py b/setup.py index 4fe617e..09bd0e6 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ def readme(): setup( name="mafese", - version="0.1.7", + version="0.1.8", author="Thieu", author_email="nguyenthieu2102@gmail.com", description="MAFESE: Metaheuristic Algorithm for Feature Selection - An Open Source Python Library",