From e41780bcc2ec0a92598acdb81906dd38258d3320 Mon Sep 17 00:00:00 2001 From: Gaetan Jonathan BAKARY Date: Sun, 18 Dec 2022 08:24:49 +0300 Subject: [PATCH] bump to 1.1.7 (#75) * [ADD] Logger fearure for ampalibe (#71) * [IMP] Make Sqlite support type datetime (#72) * [IMP] send return data in after_receive function (#73) * [IMP] Avoid quick_rep params erase next quick_rep in (9d7a934c2a292ad3a67f3a514f3994df2b141984) * [IMP] Readability and maintainability (#74) --- .gitignore | 4 +++- CHANGELOG.md | 9 +++++++++ README.md | 2 +- ampalibe/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 6 files changed, 16 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 6cd84c8..cca965d 100644 --- a/.gitignore +++ b/.gitignore @@ -137,4 +137,6 @@ _build/.env __pycache__/ ngrok ngrok.exe -ampalibe.db \ No newline at end of file +ampalibe.db + +generated/ \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ab64ba..94ec1f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -161,3 +161,12 @@ * [ADD] get_user_profile SEND API +## Ampalibe 1.1.7 + +* [ADD] Logger fearure for ampalibe (#71) +* [IMP] Make Sqlite support type datetime (#72) +* [IMP] send return data in after_receive function (#73) +* [IMP] Avoid quick_rep params erase next quick_rep in (9d7a934c2a292ad3a67f3a514f3994df2b141984) +* [IMP] Readability and maintainability (#74) + + diff --git a/README.md b/README.md index 5494b80..56d628b 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 6091200..847b991 100644 --- a/ampalibe/__init__.py +++ b/ampalibe/__init__.py @@ -8,7 +8,7 @@ from .source import conf, core, langs -__version__ = "1.1.7.dev" +__version__ = "1.1.7" __author__ = "iTeam-$" diff --git a/setup.cfg b/setup.cfg index 02fa653..0d2b23b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = Ampalibe -version = 1.1.7.dev +version = 1.1.7 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 877a76e..9f42344 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.7.dev", # The release version + version="1.1.7", # The release version author="iTeam-$", # Full name of the author description=( "Ampalibe is a lightweight Python framework for building Facebook"