Skip to content

Commit aefb29c

Browse files
0.1.50 changelog and readme update
1 parent 50a9fae commit aefb29c

File tree

4 files changed

+8
-23
lines changed

4 files changed

+8
-23
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/).
66

7+
## [0.1.50] - 2024-06-28
8+
### Changed
9+
- Removed need for system installation of `yt-dlp`
10+
- instead of subprocess we use yt-dlp package from pypi
11+
- https://github.com/NotJoeMartinez/yt-fts/pull/147
12+
713
## [0.1.49] - 2024-06-25
814
### Fixed
915
- Outdated chromadb dependency crashing cli

README.md

-21
Original file line numberDiff line numberDiff line change
@@ -19,27 +19,6 @@ pip
1919
pip install yt-fts
2020
```
2121

22-
Homebrew
23-
24-
```bash
25-
brew tap notjoemartinez/yt-fts
26-
brew install yt-fts
27-
```
28-
29-
30-
**yt-dlp dependency:**
31-
32-
This project requires [yt-dlp](https://github.com/yt-dlp/yt-dlp) installed globally. Platform specific installation instructions are available on the [yt-dlp wiki](https://github.com/yt-dlp/yt-dlp/wiki/Installation).
33-
34-
```bash
35-
# MacOS/Homebrew
36-
brew install yt-dlp
37-
# Windows/winget
38-
winget install yt-dlp
39-
# pip
40-
python3 -m pip install -U yt-dlp
41-
```
42-
4322
## `download`
4423
Download subtitles for a channel.
4524

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "yt-fts"
7-
version = "0.1.49"
7+
version = "0.1.50"
88
description = "Search all of a YouTube channel from the command line"
99
readme = "README.md"
1010
requires-python = ">=3.8"

yt_fts/yt_fts.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from .utils import *
1212
from rich.console import Console
1313

14-
YT_FTS_VERSION = "0.1.49"
14+
YT_FTS_VERSION = "0.1.50"
1515
console = Console()
1616

1717
@click.group(context_settings={"help_option_names": ["-h", "--help"]})

0 commit comments

Comments
 (0)