Skip to content

Commit

Permalink
bump to 1.1.7 (#75)
Browse files Browse the repository at this point in the history
* [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 (9d7a934)
* [IMP] Readability and maintainability (#74)
  • Loading branch information
gaetan1903 authored Dec 18, 2022
1 parent a9de33f commit e41780b
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -137,4 +137,6 @@ _build/.env
__pycache__/
ngrok
ngrok.exe
ampalibe.db
ampalibe.db

generated/
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
It provides a new concept, it manages webhooks, processes data sent by Facebook and provides <a href="https://developers.facebook.com/docs/messenger-platform/">API Messenger</a> with advanced functions such as payload management, item length, and more.
</p>

<a href='https://github.com/iTeam-S/Ampalibe/#'><img src='https://img.shields.io/badge/version-1.1.7.dev-%23008080'/></a>
<a href='https://github.com/iTeam-S/Ampalibe/#'><img src='https://img.shields.io/badge/version-1.1.7-%23008080'/></a>
<a href='https://ampalibe.readthedocs.io/en/latest/'><img src='https://readthedocs.org/projects/ampalibe/badge/?version=latest&style=flat'/></a>
<a href='https://github.com/iTeam-S/Ampalibe/actions/workflows/ci.yml'><img src='https://github.com/iTeam-S/Ampalibe/actions/workflows/ci.yml/badge.svg'/></a>
<a href='https://github.com/iTeam-S/Ampalibe/actions/workflows/cd-pg.yml'><img src='https://github.com/iTeam-S/Ampalibe/actions/workflows/cd-pg.yml/badge.svg'/></a>
Expand Down
2 changes: 1 addition & 1 deletion 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.7.dev"
__version__ = "1.1.7"
__author__ = "iTeam-$"


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.7.dev
version = 1.1.7
author = iTeam-$
author_email = [email protected]
description = Ampalibe is a lightweight Python framework for building Facebook Messenger bots faster.
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.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"
Expand Down

0 comments on commit e41780b

Please sign in to comment.