Skip to content

Commit

Permalink
Release new version 0.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
thieu1995 committed Jul 14, 2023
1 parent e3b732e commit 5111d06
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 9 deletions.
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -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"
6 changes: 6 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# Version 0.1.8

+ Fix bug load data from library.

---------------------------------------------------------------------

# Version 0.1.7

+ Remove some unknown datasets
Expand Down
3 changes: 2 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/source/pages/quick_start.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Installation

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

$ pip install mafese==0.1.7
$ pip install mafese==0.1.8


* Install directly from source code::
Expand Down
2 changes: 1 addition & 1 deletion mafese/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 5111d06

Please sign in to comment.