We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ddf20ce commit 24a82e3Copy full SHA for 24a82e3
pyswarms/__init__.py
@@ -12,7 +12,7 @@
12
13
__author__ = """Lester James V. Miranda"""
14
__email__ = "ljvmiranda@gmail.com"
15
-__version__ = "1.0.1"
+__version__ = "1.0.2"
16
17
from .single import global_best, local_best, general_optimizer
18
from .discrete import binary
setup.cfg
@@ -1,5 +1,5 @@
1
[bumpversion]
2
-current_version = 1.0.1
+current_version = 1.0.2
3
commit = True
4
tag = True
5
tag_name = v.{new_version}
setup.py
@@ -18,7 +18,7 @@
19
setup(
20
name="pyswarms",
21
- version="1.0.1",
+ version="1.0.2",
22
description="A Python-based Particle Swarm Optimization (PSO) library.",
23
long_description=readme,
24
long_description_content_type="text/markdown",
0 commit comments