Skip to content

Commit

Permalink
[RELEASE] Ampalibe 1.1.2 - patch
Browse files Browse the repository at this point in the history
- [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
  • Loading branch information
gaetan1903 committed Aug 15, 2022
1 parent d840e59 commit 4ebcd1b
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 8 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/cd-pg.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: CD Package

on:
push:
branches: ['main']
release:
types:
- created

env:
REGISTRY: ghcr.io
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cd-pypi.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: CD PYPI
on:
release:
types: # This configuration does not affect the page_build event above
types:
- created
jobs:
publish:
Expand Down
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
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.2dev-%23008080'/></a>
<a href='https://github.com/iTeam-S/Ampalibe/#'><img src='https://img.shields.io/badge/version-1.1.2-%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.2dev"
__version__ = "1.1.2"
__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.2dev
version = 1.1.2
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.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
Expand Down

0 comments on commit 4ebcd1b

Please sign in to comment.