diff --git a/CHANGES.rst b/CHANGES.rst index b3d1c6a0..245c4f49 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -16,6 +16,27 @@ Changelog .. towncrier release notes start +3.0.0 (2023-09-01) +=================== + +Bugfixes +-------- + +- Replaced :code:`datetime.datetime` with `DateTime` type wrapper across types to make dumped JSONs object + more compatible with data that is sent by Telegram. + `#1277 `_ +- Fixed magic :code:`.as_(...)` operation for values that can be interpreted as `False` (e.g. `0`). + `#1281 `_ +- Italic markdown from utils now uses correct decorators + `#1282 `_ +- Fixed method :code:`Message.send_copy` for stickers. + `#1284 `_ +- Fixed :code:`Message.send_copy` method, which was not working properly with stories, so not you can copy stories too (forwards messages). + `#1286 `_ +- Fixed error overlapping when validation error is caused by remove_unset root validator in base types and methods. + `#1290 `_ + + 3.0.0rc2 (2023-08-18) ====================== diff --git a/CHANGES/1277.bugfix.rst b/CHANGES/1277.bugfix.rst deleted file mode 100644 index 6acfccf2..00000000 --- a/CHANGES/1277.bugfix.rst +++ /dev/null @@ -1,2 +0,0 @@ -Replaced :code:`datetime.datetime` with `DateTime` type wrapper across types to make dumped JSONs object -more compatible with data that is sent by Telegram. diff --git a/CHANGES/1281.bugfix.rst b/CHANGES/1281.bugfix.rst deleted file mode 100644 index 285b180d..00000000 --- a/CHANGES/1281.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fixed magic :code:`.as_(...)` operation for values that can be interpreted as `False` (e.g. `0`). diff --git a/CHANGES/1282.bugfix.rst b/CHANGES/1282.bugfix.rst deleted file mode 100644 index 323060b1..00000000 --- a/CHANGES/1282.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Italic markdown from utils now uses correct decorators \ No newline at end of file diff --git a/CHANGES/1284.bugfix.rst b/CHANGES/1284.bugfix.rst deleted file mode 100644 index b30cced4..00000000 --- a/CHANGES/1284.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fixed method :code:`Message.send_copy` for stickers. diff --git a/CHANGES/1286.bugfix.rst b/CHANGES/1286.bugfix.rst deleted file mode 100644 index a9cfe0d9..00000000 --- a/CHANGES/1286.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fixed :code:`Message.send_copy` method, which was not working properly with stories, so not you can copy stories too (forwards messages). diff --git a/CHANGES/1290.bugfix.rst b/CHANGES/1290.bugfix.rst deleted file mode 100644 index 04ba92dc..00000000 --- a/CHANGES/1290.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fixed error overlapping when validation error is caused by remove_unset root validator in base types and methods.