Skip to content

Commit 1f1a579

Browse files
committed
version: v5.26.0
1 parent 5932b68 commit 1f1a579

File tree

8 files changed

+22
-9
lines changed

8 files changed

+22
-9
lines changed

.bumpit.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
current_version: "5.25.0"
1+
current_version: "5.26.0"
22
base_branch: "master"
33
strategy:
44
name: "semver"

.github/workflows/yt_clipper_ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
# Can work around to some degree using set-env
1313
env:
1414
NAME: yt_clipper
15-
VERSION: '5.25.0'
15+
VERSION: '5.26.0'
1616

1717
jobs:
1818
build:

.versionrc.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
{ "type": "feat", "section": "Features" },
88
{ "type": "fix", "section": "Bug Fixes" },
99
{ "type": "mdeps", "section": "Major Dependency Upgrades" },
10-
{ "type": "docs", "hidden": false },
10+
{ "type": "docs", "section": "Documentation Updates" },
1111
{ "type": "chore", "hidden": true },
1212
{ "type": "style", "hidden": true },
1313
{ "type": "refactor", "hidden": true },

changelog.md

+13
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
44

5+
## [5.26.0](https://github.com/exwm/yt_clipper/compare/v5.25.0...v5.26.0) (2024-10-09)
6+
7+
### Features
8+
9+
* **clipper:** add --cookiefile option to pass a cookies file to youtube_dl for video platform login ([33bc588](https://github.com/exwm/yt_clipper/commit/33bc5889c02fd293e86ef9230b2e60171b81be34))
10+
* for more information on passing cookies, see yt-dlp docs: https://github.com/yt-dlp/yt-dlp/wiki/FAQ#how-do-i-pass-cookies-to-yt-dlp
11+
* **clipper:** use rich for richer logging ([e673d24](https://github.com/exwm/yt_clipper/commit/e673d24fbf776659199e9c112de50a13a20031db))
12+
* **clipper:** use yt_clipper icon for python exe builds ([1784a07](https://github.com/exwm/yt_clipper/commit/1784a078a9c2f4378648e18e2ad2609681676c20))
13+
14+
### Major Dependency Upgrades
15+
16+
* **clipper:** update yt-dlp dependency to v2024.10.07 ([d9c8dd5](https://github.com/exwm/yt_clipper/commit/d9c8dd5a88af0f2b93b57a611bfcbc0652e92504))
17+
518
## [5.25.0](https://github.com/exwm/yt_clipper/compare/v5.24.0...v5.25.0) (2024-09-30)
619

720

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "yt_clipper",
33
"description": "Mark up YouTube videos and quickly generate clipped webms.",
44
"author": "exwm",
5-
"version": "5.25.0",
5+
"version": "5.26.0",
66
"license": "MIT",
77
"repository": {
88
"type": "git",

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "clipper"
3-
version = "5.25.0"
3+
version = "5.26.0"
44
description = "Quickly generate clipped webms."
55
authors = ["exwm <[email protected]>"]
66
license = "MIT"

src/clipper/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "5.25.0"
1+
__version__ = "5.26.0"

src/markup/yt_clipper.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
// BANNER GUARD
44
// @locale english
55
// @name yt_clipper
6-
// @version 5.25.0
7-
// @version 5.25.0
6+
// @version 5.26.0
7+
// @version 5.26.0
88
// @description Mark up YouTube videos and quickly generate clipped webms.
99
// @author elwm
1010
// @namespace https://github.com/exwm
@@ -35,7 +35,7 @@
3535
// ==/UserScript==
3636
// BANNER GUARD
3737

38-
const __version__ = '5.25.0';
38+
const __version__ = '5.26.0';
3939
import { Chart, ChartConfiguration } from 'chart.js';
4040
import { safeSetInnerHtml } from './util/util';
4141
import { stripIndent } from 'common-tags';

0 commit comments

Comments
 (0)