Skip to content

Commit 5540b37

Browse files
committed
Release new alpha version
1 parent b817957 commit 5540b37

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Different versions of mealpy in terms of passing hyper-parameters. So please car
1313
# Version 2.5.4
1414

1515
### Update
16+
+ Remove deepcopy() to improve the computational speed
1617
+ Update the parameter's order in Tuner class
1718
+ Update the saving's bug when using Termination in Multitask
1819
+ Remove ILA optimizer

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.2"
32+
__version__ = "2.5.4-alpha.3"
3333

3434
from .bio_based import (BBO, BBOA, BMO, EOA, IWO, SBO, SMA, SOA, SOS, TPO, TSA, VCS, WHO)
3535
from .evolutionary_based import (CRO, DE, EP, ES, FPA, GA, MA)

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.2",
18+
version="2.5.4-alpha.3",
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)