Skip to content

Commit

Permalink
Create patch v.0.2.1 (#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lj Miranda authored Jun 27, 2018
1 parent 18ccecc commit 272318a
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 10 deletions.
4 changes: 3 additions & 1 deletion AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,13 @@ Contributors
* Charalampos Papadimitriou (`@CPapadim`_)
* Mamady Nabé (`@mamadyonline`_)
* Erik (`@slek120`_)
* Thomas (`@ThomasCES`_)

.. _`@ljvmiranda921`: https://github.com/ljvmiranda921
.. _`@Carl-K`: https://github.com/Carl-K
.. _`@SioKCronin`: https://github.com/SioKCronin
.. _`@jazcap53`: https://github.com/jazcap53
.. _`@CPapadim`: https://github.com/CPapadim
.. _`@mamadyonline`: https://github.com/mamadyonline
.. _`@slek120`: https://github.com/slek120
.. _`@slek120`: https://github.com/slek120
.. _`@ThomasCES`: https://github.com/ThomasCES
10 changes: 9 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,12 @@ Thanks for all the wonderful Pull Requests, `@mamadyonline <https://github.com/m
.. _114: https://github.com/ljvmiranda921/pyswarms/pull/114
.. _115: https://github.com/ljvmiranda921/pyswarms/pull/115
.. _116: https://github.com/ljvmiranda921/pyswarms/pull/116
.. _117: https://github.com/ljvmiranda921/pyswarms/pull/117
.. _117: https://github.com/ljvmiranda921/pyswarms/pull/117


0.2.1 (2018-06-27)
------------------

* Fix sigmoid function in BinaryPSO. Thanks a lot `@ThomasCES <https://github.com/ThomasCES`_! (PR # 145)

.. _145: https://github.com/ljvmiranda921/pyswarms/pull/145
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,7 @@ contributors:
* Charalampos Papadimitriou ([`@CPapadim`](https://github.com/CPapadim))
* Mamady Nabé ([`@mamadyonline`](https://github.com/mamadyonline))
* Erik ([`@slek120`](https://github.com/slek120))
* Thomas ([`@ThomasCES`](https://github.com/ThomasCES))

[pyswarm]: https://github.com/tisimst/pyswarm
[Cookiecutter]: https://github.com/audreyr/cookiecutter
Expand Down Expand Up @@ -279,4 +280,4 @@ Not on the list? Ping us in the Issue Tracker!
## Others
Like it? Love it? Leave us a star on [Github] to show your appreciation!

[Github]: https://github.com/ljvmiranda921/pyswarms
[Github]: https://github.com/ljvmiranda921/pyswarms
2 changes: 1 addition & 1 deletion pyswarms/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

__author__ = """Lester James V. Miranda"""
__email__ = '[email protected]'
__version__ = '0.2.0'
__version__ = '0.2.1'

from .single import global_best, local_best
from .discrete import binary
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.2.0
current_version = 0.2.1
commit = True
tag = True

Expand Down
8 changes: 3 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@
with open('README.md') as readme_file:
readme = readme_file.read()

with open('HISTORY.rst') as history_file:
history = history_file.read()

requirements = [
'PyYAML==3.12',
'future==0.16.0',
Expand Down Expand Up @@ -39,9 +36,10 @@

setup(
name='pyswarms',
version='0.2.0',
version='0.2.1',
description="A Python-based Particle Swarm Optimization (PSO) library.",
long_description=readme + '\n\n' + history,
long_description=readme,
long_description_content_type="text/markdown",
author="Lester James V. Miranda",
author_email='[email protected]',
url='https://github.com/ljvmiranda921/pyswarms',
Expand Down

0 comments on commit 272318a

Please sign in to comment.