Skip to content

Commit

Permalink
[REL] Release v1.1.1-patch
Browse files Browse the repository at this point in the history
- fix port arument doesn't work on
- fix error when python is python3 and not python
  • Loading branch information
gaetan1903 committed Aug 12, 2022
1 parent d2df36f commit 286cd38
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd-pypi.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CD Pypi
name: CD PYPI
on:
release:
types: # This configuration does not affect the page_build event above
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,3 +100,9 @@
- Typewriting introduction for output command
- Documentation updated
- Remove workers


## Ampalibe 1.1.1 patch

- fix port arument doesn't work on
- fix error when python is python3 and not python
8 changes: 5 additions & 3 deletions ampalibe/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from .source import conf, core, langs


__version__ = "1.1.0"
__version__ = "1.1.1"
__author__ = "iTeam-$"


Expand Down Expand Up @@ -101,10 +101,12 @@ def init_proj(path):
/ _ \ | |\/| | |_) / _ \ | | | || _ \| _| loooooooooool
/ ___ \| | | | __/ ___ \| |___ | || |_) | |___ looooooool
/_/ \_\_| |_|_| /_/ \_\_____|___|____/|_____| oooooo \033[0m
""")
"""
)
)
typing_print(
"~\033[32m 👌\033[0m | Env Loaded\n~\033[32m 👌\033[0m | Ampalibe running...")
"~\033[32m 👌\033[0m | Env Loaded\n~\033[32m 👌\033[0m | Ampalibe running..."
)

elif sys.argv[1] == "usage":
typing_print(
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = Ampalibe
version = 1.1.0
version = 1.1.1
author = iTeam-$
author_email = [email protected]
description = Ampalibe is a light open source framework for bot messenger.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="ampalibe", # This is the name of the package
version="1.1.0", # The release version
version="1.1.1", # The release version
author="iTeam-$", # Full name of the author
description="Ampalibe is a light open source framework for bot messenger.",
long_description=long_description, # Long description read from the readme
Expand Down

0 comments on commit 286cd38

Please sign in to comment.