diff --git a/NEWS.rst b/NEWS.rst index 5fd1fe1aa..f388ee2db 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -10,6 +10,19 @@ .. towncrier release notes start +1.1.2 (2024-09-12) +================== + +Features +-------- + +- Added support for automatic video downloads from BlueSky, allowing PyKorone to seamlessly download videos from the platform. + +Bug Fixes +--------- + +- Fixed incorrect HTML escaping that caused formatting issues in the captions of media sent by the automatic media downloader. + 1.1.1 (2024-09-10) ================== diff --git a/news/+bsky.feature.rst b/news/+bsky.feature.rst deleted file mode 100644 index ca6677664..000000000 --- a/news/+bsky.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Added support for automatic video downloads from BlueSky, allowing PyKorone to seamlessly download videos from the platform. diff --git a/news/+html.bugfix.rst b/news/+html.bugfix.rst deleted file mode 100644 index dacff88b8..000000000 --- a/news/+html.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fixed incorrect HTML escaping that caused formatting issues in the captions of media sent by the automatic media downloader. diff --git a/src/korone/__init__.py b/src/korone/__init__.py index c00209753..781abc44a 100644 --- a/src/korone/__init__.py +++ b/src/korone/__init__.py @@ -1,4 +1,4 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright (c) 2024 Hitalo M. -__version__ = "1.1.1" +__version__ = "1.1.2"