Skip to content
This repository has been archived by the owner on Nov 11, 2022. It is now read-only.

Commit

Permalink
Version 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alissonlauffer committed Dec 31, 2019
1 parent 121fec8 commit cf6168e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# amanobot changelog

## 1.5.0 (2019-12-31)
- Bot API 4.5
- Added the `setChatAdministratorCustomTitle` method
- Added the `file_unique_id` field to the objects `Animation`, `Audio`, `Document`, `PassportFile`, `PhotoSize`, `Sticker`, `Video`, `VideoNote`, `Voice` and `File`
- Added the `small_file_unique_id` and `big_file_unique_id` fields to the object `ChatPhoto`
- Added the `slow_mode_delay` field to the `Chat` object
- Added the `custom_title` field to the `ChatMember` object
- Note: If you want to use the new entity fields (such as underlined and strikethrough text) in markdown, you need to pass `MarkdownV2` to the `parse_mode` parameter

## 1.4.5 (2019-12-04)
- Add the `raise_errors` to the Bot class
- Require at least Python 3.5.3 for the asyncio variant (Fixes installation on Python 3.5.2)
Expand All @@ -16,7 +25,6 @@

## 1.4.1 (2019-11-05)
- Add missing permissions to restrictChatMember on the asyncio variant.
- Now we offer wheel releases too

## 1.4.0 (2019-07-29)
- Bot API 4.4
Expand Down
2 changes: 1 addition & 1 deletion amanobot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from . import exception


__version_info__ = (1, 4, 5)
__version_info__ = (1, 5, 0)
__version__ = '.'.join(map(str, __version_info__))


Expand Down

0 comments on commit cf6168e

Please sign in to comment.