diff --git a/docs/changelog.rst b/docs/changelog.rst index 8fe6502..28945bb 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,14 @@ Changelog ========== +v2.1.2 +------ + +* Fix not properly handling errors when resubscribing to channels every day. +* Fix race conditions in ``InMemoryVideoHistory`` and ``FileVideoHistory`` + +**Full Changelog**: https://github.com/SeoulSKY/ytnoti/compare/v2.1.1...v2.1.2 + v2.1.1 ------ diff --git a/docs/conf.py b/docs/conf.py index cae750a..3c3e6f6 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -17,7 +17,7 @@ project = "ytnoti" copyright = "2024 - Present, SeoulSKY" # noqa: A001 author = "SeoulSKY" -release = "2.1.1" +release = "2.1.2" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/setup.py b/setup.py index 8f6e860..5e45f54 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="ytnoti", - version="2.1.1", + version="2.1.2", packages=find_packages(), author="SeoulSKY", author_email="contact@seoulsky.org",