diff --git a/CHANGES.rst b/CHANGES.rst index e7310063b5..86ad5552c7 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -16,6 +16,66 @@ Changelog .. towncrier release notes start +3.0.0b6 (2022-11-18) +===================== + +Features +-------- + +- (again) Added possibility to combine filters with an *and*/*or* operations. + + Read more in ":ref:`Combining filters `" documentation section + `#1018 `_ +- Added following methods to ``Message`` class: + + - :code:`Message.forward(...)` + - :code:`Message.edit_media(...)` + - :code:`Message.edit_live_location(...)` + - :code:`Message.stop_live_location(...)` + - :code:`Message.pin(...)` + - :code:`Message.unpin()` + `#1030 `_ +- Added following methods to :code:`User` class: + + - :code:`User.mention_markdown(...)` + - :code:`User.mention_html(...)` + `#1049 `_ +- Added full support of `Bot API 6.3 `_ + `#1057 `_ + + +Bugfixes +-------- + +- Fixed :code:`Message.send_invoice` and :code:`Message.reply_invoice`, added missing arguments + `#1047 `_ +- Fixed copy and forward in: + + - :code:`Message.answer(...)` + - :code:`Message.copy_to(...)` + `#1064 `_ + + +Improved Documentation +---------------------- + +- Fixed UA translations in index.po + `#1017 `_ +- Fix typehints for :code:`Message`, :code:`reply_media_group` and :code:`answer_media_group` methods + `#1029 `_ +- Removed an old now non-working feature + `#1060 `_ + + +Misc +---- + +- Enabled testing on Python 3.11 + `#1044 `_ +- Added a mandatory dependency :code:`certifi` in due to in some cases on systems that doesn't have updated ca-certificates the requests to Bot API fails with reason :code:`[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate in certificate chain` + `#1066 `_ + + 3.0.0b5 (2022-10-02) ===================== diff --git a/CHANGES/1017.doc.rst b/CHANGES/1017.doc.rst deleted file mode 100644 index 104d382cfd..0000000000 --- a/CHANGES/1017.doc.rst +++ /dev/null @@ -1 +0,0 @@ -Fixed UA translations in index.po diff --git a/CHANGES/1018.feature.rst b/CHANGES/1018.feature.rst deleted file mode 100644 index 00c244cf83..0000000000 --- a/CHANGES/1018.feature.rst +++ /dev/null @@ -1,3 +0,0 @@ -(again) Added possibility to combine filters with an *and*/*or* operations. - -Read more in ":ref:`Combining filters `" documentation section diff --git a/CHANGES/1029.doc.rst b/CHANGES/1029.doc.rst deleted file mode 100644 index b199aa4056..0000000000 --- a/CHANGES/1029.doc.rst +++ /dev/null @@ -1 +0,0 @@ -Fix typehints for :code:`Message`, :code:`reply_media_group` and :code:`answer_media_group` methods diff --git a/CHANGES/1030.feature.rst b/CHANGES/1030.feature.rst deleted file mode 100644 index 913cb6f864..0000000000 --- a/CHANGES/1030.feature.rst +++ /dev/null @@ -1,8 +0,0 @@ -Added following methods to ``Message`` class: - -- :code:`Message.forward(...)` -- :code:`Message.edit_media(...)` -- :code:`Message.edit_live_location(...)` -- :code:`Message.stop_live_location(...)` -- :code:`Message.pin(...)` -- :code:`Message.unpin()` diff --git a/CHANGES/1044.misc.rst b/CHANGES/1044.misc.rst deleted file mode 100644 index ef356e5a27..0000000000 --- a/CHANGES/1044.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Enabled testing on Python 3.11 diff --git a/CHANGES/1047.bugfix.rst b/CHANGES/1047.bugfix.rst deleted file mode 100644 index 0f67cb748e..0000000000 --- a/CHANGES/1047.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fixed :code:`Message.send_invoice` and :code:`Message.reply_invoice`, added missing arguments diff --git a/CHANGES/1049.feature.rst b/CHANGES/1049.feature.rst deleted file mode 100644 index 006168db2c..0000000000 --- a/CHANGES/1049.feature.rst +++ /dev/null @@ -1,4 +0,0 @@ -Added following methods to :code:`User` class: - -- :code:`User.mention_markdown(...)` -- :code:`User.mention_html(...)` diff --git a/CHANGES/1057.feature.rst b/CHANGES/1057.feature.rst deleted file mode 100644 index 0b8f0b4764..0000000000 --- a/CHANGES/1057.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Added full support of `Bot API 6.3 `_ diff --git a/CHANGES/1060.doc.rst b/CHANGES/1060.doc.rst deleted file mode 100644 index 3275c1ad94..0000000000 --- a/CHANGES/1060.doc.rst +++ /dev/null @@ -1 +0,0 @@ -Removed an old now non-working feature diff --git a/CHANGES/1064.bugfix.rst b/CHANGES/1064.bugfix.rst deleted file mode 100644 index 58ea309ccf..0000000000 --- a/CHANGES/1064.bugfix.rst +++ /dev/null @@ -1,4 +0,0 @@ -Fixed copy and forward in: - -- :code:`Message.answer(...)` -- :code:`Message.copy_to(...)` diff --git a/CHANGES/1066.misc.rst b/CHANGES/1066.misc.rst deleted file mode 100644 index 49b253895c..0000000000 --- a/CHANGES/1066.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Added a mandatory dependency :code:`certifi` in due to in some cases on systems that doesn't have updated ca-certificates the requests to Bot API fails with reason :code:`[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate in certificate chain`