diff --git a/CHANGELOG.md b/CHANGELOG.md index bbe2db1..29208c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/). +## [0.1.56] - 2024-09-04 +## Fixed +- `OR`, `AND` and Quoted searches not working + - https://github.com/NotJoeMartinez/yt-fts/issues/164 + - https://github.com/NotJoeMartinez/yt-fts/pull/170 + ## [0.1.55] - 2024-07-22 ### Fixed - After running download, there's nothing in the DB diff --git a/pyproject.toml b/pyproject.toml index d390be2..f79b06e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "yt-fts" -version = "0.1.55" +version = "0.1.56" description = "Search all of a YouTube channel from the command line" readme = "README.md" requires-python = ">=3.8" diff --git a/yt_fts/yt_fts.py b/yt_fts/yt_fts.py index 5f50fbc..214b3b2 100644 --- a/yt_fts/yt_fts.py +++ b/yt_fts/yt_fts.py @@ -26,7 +26,7 @@ show_message ) -YT_FTS_VERSION = "0.1.55" +YT_FTS_VERSION = "0.1.56" console = Console()