Skip to content

Commit 2ac0c8d

Browse files
committed
Release new alpha version
1 parent a5546f0 commit 2ac0c8d

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ Different versions of mealpy in terms of passing hyper-parameters. So please car
2222
+ bounded_position() from optimizer. This means for optimizer level (get in valid range of position)
2323
+ amend_position() from problem. This means for problem level (transform to the correct solution)
2424
+ Fix bugs coefficients in GWO-based optimizers.
25+
+ Fig bug self.epoch in SCSO optimizer.
2526

2627

2728
# Version 2.5.3

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ $ pip install mealpy==2.5.3
6060

6161
### Install the alpha/beta version
6262
```sh
63-
$ pip install mealpy==2.5.4a4
63+
$ pip install mealpy==2.5.4a5
6464
```
6565

6666
### Install the pre-release version

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.4"
32+
__version__ = "2.5.4-alpha.5"
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.4",
18+
version="2.5.4-alpha.5",
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)