From 4ebcd1bc3a14bfbb8a449a22460592e9aa6f0db4 Mon Sep 17 00:00:00 2001 From: Gaetan Jonathan Date: Mon, 15 Aug 2022 23:24:10 +0300 Subject: [PATCH] [RELEASE] Ampalibe 1.1.2 - patch - [IMP] Add indication in dockerfile - [FIX] Payload object instead of dict in quick_replies when build Element - [FIX] Fix Typo in Ampalibe definition - [FIX] Missing gitignore file on create & init - [IMP] Adapt ASGI server to be supported by Heroku/python image - [IMP] Command decorators priority before action decorators in ampalibe core --- .github/workflows/cd-pg.yml | 5 +++-- .github/workflows/cd-pypi.yml | 2 +- CHANGELOG.md | 11 ++++++++++- README.md | 2 +- ampalibe/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 7 files changed, 18 insertions(+), 8 deletions(-) diff --git a/.github/workflows/cd-pg.yml b/.github/workflows/cd-pg.yml index b64db26..3edd34e 100644 --- a/.github/workflows/cd-pg.yml +++ b/.github/workflows/cd-pg.yml @@ -1,8 +1,9 @@ name: CD Package on: - push: - branches: ['main'] + release: + types: + - created env: REGISTRY: ghcr.io diff --git a/.github/workflows/cd-pypi.yml b/.github/workflows/cd-pypi.yml index 84f96b0..1574453 100644 --- a/.github/workflows/cd-pypi.yml +++ b/.github/workflows/cd-pypi.yml @@ -1,7 +1,7 @@ name: CD PYPI on: release: - types: # This configuration does not affect the page_build event above + types: - created jobs: publish: diff --git a/CHANGELOG.md b/CHANGELOG.md index 240ac9e..3f27cf0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -104,5 +104,14 @@ ## Ampalibe 1.1.1 patch -- fix port arument doesn't work on +- fix port argument doesn't work on - fix error when python is python3 and not python + +## Ampalibe 1.1.2 patch + +- [IMP] Add indication in dockerfile +- [FIX] Payload object instead of dict in quick_replies when build Element +- [FIX] Fix Typo in Ampalibe definition +- [FIX] Missing gitignore file on create & init +- [IMP] Adapt ASGI server to be supported by Heroku/python image +- [IMP] Command decorators priority before action decorators in ampalibe core diff --git a/README.md b/README.md index ba0cbcc..15aeda4 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ It provides a new concept, it manages webhooks, processes data sent by Facebook and provides API Messenger with advanced functions such as payload management, item length, and more.

- + diff --git a/ampalibe/__init__.py b/ampalibe/__init__.py index 5349265..b7e7613 100644 --- a/ampalibe/__init__.py +++ b/ampalibe/__init__.py @@ -8,7 +8,7 @@ from .source import conf, core, langs -__version__ = "1.1.2dev" +__version__ = "1.1.2" __author__ = "iTeam-$" diff --git a/setup.cfg b/setup.cfg index cd24310..b75524f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = Ampalibe -version = 1.1.2dev +version = 1.1.2 author = iTeam-$ author_email = contact@iteam-s.mg description = Ampalibe is a lightweight Python framework for building Facebook Messenger bots faster. diff --git a/setup.py b/setup.py index cf71b1e..cb9ee95 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="ampalibe", # This is the name of the package - version="1.1.2dev", # The release version + version="1.1.2", # The release version author="iTeam-$", # Full name of the author description="Ampalibe is a lightweight Python framework for building Facebook Messenger bots faster.", long_description=long_description, # Long description read from the readme