Skip to content

Commit b092824

Browse files
committed
Prepare release new version 2.5.4
1 parent 6b14165 commit b092824

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ Different versions of mealpy in terms of passing hyper-parameters. So please car
3333
+ Update parameters in OriginalHC and SwarmHC
3434
+ Update ParameterGrid class to produce the dict with same order as original input
3535
+ Add export_figures() to Tuner class. It can draw the hyperparameter tuning process.
36+
+ Fix several bugs in docs folders.
3637

3738

3839
# Version 2.5.3

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ MEALPY is the largest python library for most of the cutting-edge nature-inspire
3232
approximate optimization.
3333

3434
* **Free software:** GNU General Public License (GPL) V3 license
35-
* **Total algorithms**: 175 (102 original, 46 official variants, 27 developed variants)
35+
* **Total algorithms**: 209 (129 original, 46 official variants, 34 developed variants)
3636
* **Documentation:** https://mealpy.readthedocs.io/en/latest/
37-
* **Python versions:** 3.7.x, 3.8.x, 3.9.x, 3.10.x, 3.11.x
37+
* **Python versions:** >=3.7x
3838
* **Dependencies:** numpy, scipy, pandas, matplotlib
3939

4040

mealpy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
# >>> print(f"Best solution: {best_position}, Best fitness: {best_fitness}")
3030

3131

32-
__version__ = "2.5.4-alpha.6"
32+
__version__ = "2.5.4"
3333

3434
import sys, inspect
3535
from .bio_based import (BBO, BBOA, BMO, EOA, IWO, SBO, SMA, SOA, SOS, TPO, TSA, VCS, WHO)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def readme():
1515

1616
setup(
1717
name="mealpy",
18-
version="2.5.4-alpha.6",
18+
version="2.5.4",
1919
author="Thieu",
2020
author_email="[email protected]",
2121
description="MEALPY: An Open-source Library for Latest Meta-heuristic Algorithms in Python",

0 commit comments

Comments
 (0)