Skip to content

Commit 5111d06

Browse files
committed
Release new version 0.1.8
1 parent e3b732e commit 5111d06

File tree

8 files changed

+16
-9
lines changed

8 files changed

+16
-9
lines changed

CITATION.cff

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors:
55
given-names: "Nguyen"
66
orcid: "https://orcid.org/0000-0001-9994-8747"
77
title: "MAFESE: Metaheuristic Algorithm for Feature Selection - An Open Source Python Library"
8-
version: 0.1.7
8+
version: 0.1.8
99
doi: 10.5281/zenodo.7969042
10-
date-released: 2023-07-13
10+
date-released: 2023-07-14
1111
url: "https://github.com/thieu1995/mafese"

ChangeLog.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Version 0.1.8
2+
3+
+ Fix bug load data from library.
4+
5+
---------------------------------------------------------------------
6+
17
# Version 0.1.7
28

39
+ Remove some unknown datasets

MANIFEST.in

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
include README.md LICENSE CODE_OF_CONDUCT.md ChangeLog.md examples.md
2-
include mafese/data/*.csv
2+
include mafese/data/reg/*.csv
3+
include mafese/data/cls/*.csv

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
---
55

66

7-
[![GitHub release](https://img.shields.io/badge/release-0.1.7-yellow.svg)](https://github.com/thieu1995/mafese/releases)
7+
[![GitHub release](https://img.shields.io/badge/release-0.1.8-yellow.svg)](https://github.com/thieu1995/mafese/releases)
88
[![Wheel](https://img.shields.io/pypi/wheel/gensim.svg)](https://pypi.python.org/pypi/mafese)
99
[![PyPI version](https://badge.fury.io/py/mafese.svg)](https://badge.fury.io/py/mafese)
1010
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/mafese.svg)
@@ -43,7 +43,7 @@ using meta-heuristic algorithms.
4343

4444
Install the [current PyPI release](https://pypi.python.org/pypi/mafese):
4545
```sh
46-
$ pip install mafese==0.1.7
46+
$ pip install mafese==0.1.8
4747
```
4848

4949
### Install directly from source code

docs/source/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Welcome to MAFESE's documentation!
77
==================================
88

9-
.. image:: https://img.shields.io/badge/release-0.1.7-yellow.svg
9+
.. image:: https://img.shields.io/badge/release-0.1.8-yellow.svg
1010
:target: https://github.com/thieu1995/mafese/releases
1111

1212
.. image:: https://img.shields.io/pypi/wheel/gensim.svg

docs/source/pages/quick_start.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Installation
44

55
* Install the `current PyPI release <https://pypi.python.org/pypi/mafese />`_::
66

7-
$ pip install mafese==0.1.7
7+
$ pip install mafese==0.1.8
88

99

1010
* Install directly from source code::

mafese/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Github: https://github.com/thieu1995 %
55
# --------------------------------------------------%
66

7-
__version__ = "0.1.7"
7+
__version__ = "0.1.8"
88

99
from mafese.utils.data_loader import Data, get_dataset
1010
from mafese.filter import FilterSelector

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def readme():
1515

1616
setup(
1717
name="mafese",
18-
version="0.1.7",
18+
version="0.1.8",
1919
author="Thieu",
2020
author_email="[email protected]",
2121
description="MAFESE: Metaheuristic Algorithm for Feature Selection - An Open Source Python Library",

0 commit comments

Comments
 (0)