Skip to content

Commit

Permalink
Merge branch 'release/4.0.0rc4' into develop
Browse files Browse the repository at this point in the history
* release/4.0.0rc4:
  Bump version: 4.0.0rc3 → 4.0.0rc4
  minor bugfix
  • Loading branch information
javipalanca committed Dec 5, 2024
2 parents 224423b + 26180d7 commit 42b3a91
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 9 deletions.
5 changes: 1 addition & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,7 @@ SPADE

.. image:: https://img.shields.io/pypi/pyversions/spade.svg
:target: https://pypi.python.org/pypi/spade

.. image:: https://img.shields.io/tokei/lines/github/javipalanca/spade?label=lines
:alt: Total Lines
:target: https://pepy.tech/project/spade
:alt: Python Versions

.. image:: https://img.shields.io/github/languages/count/javipalanca/spade?label=languages
:alt: Languages
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 = 4.0.0rc3
current_version = 4.0.0rc4
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+)(?P<rc>\d+))?
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def parse_requirements(filename):

setup(
name='spade',
version='4.0.0rc3',
version='4.0.0rc4',
description="Smart Python Agent Development Environment",
long_description=readme + '\n\n' + history,
author="Javi Palanca",
Expand Down
2 changes: 1 addition & 1 deletion spade/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

__author__ = """Javi Palanca"""
__email__ = "[email protected]"
__version__ = "4.0.0rc3"
__version__ = "4.0.0rc4"

__all__ = ["agent", "behaviour", "message", "template"]

Expand Down
2 changes: 1 addition & 1 deletion spade/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def cli():
@click.option(
"--purge", is_flag=True, help="Restore database file to default state (empty)"
)
def run(host, client_port, server_port, debug, db, purge, log_path):
def run(host, client_port, server_port, debug, db, purge):
"""Launch an XMPP server"""
if check_port_in_use(client_port, host):
click.echo(f"Error: The port {client_port} is already in use.")
Expand Down
2 changes: 1 addition & 1 deletion spade/templates/internal_tpl_base.html
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ <h3 class="box-title">Agent Friends</h3>

<footer class="main-footer">
<div class="pull-right hidden-xs">
<b>Version</b> 4.0.0rc3
<b>Version</b> 4.0.0rc4
</div>
<strong>Copyright © {% now 'local', '%Y' %} <a href="http://github.com/javipalanca/spade">SPADE</a>.</strong>
</footer>
Expand Down

0 comments on commit 42b3a91

Please sign in to comment.