Skip to content

Commit 0a8406a

Browse files
committed
version: v5.27.1
1 parent 8a80ac1 commit 0a8406a

File tree

7 files changed

+16
-9
lines changed

7 files changed

+16
-9
lines changed

.bumpit.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
current_version: "5.27.0"
1+
current_version: "5.27.1"
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.27.0'
15+
VERSION: '5.27.1'
1616

1717
jobs:
1818
build:

changelog.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,15 @@
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.27.0](https://github.com/exwm/yt_clipper/compare/v5.26.0...v5.27.0) (2024-10-11)
5+
## [5.27.1](https://github.com/exwm/yt_clipper/compare/v5.27.0...v5.27.1) (2024-10-25)
6+
7+
8+
### Bug Fixes
9+
10+
* **clipper:** pass --cookiefile option as --cookies to yt-dlp ([0e43f51](https://github.com/exwm/yt_clipper/commit/0e43f5169e62d7ca74361d1f68a308ff4affb1d9)) by @codedealer in ([#54](https://github.com/exwm/yt_clipper/issues/54))
11+
* **clipper:** set yt-dlp location to bundled yt-dlp for frozen releases ([8a80ac1](https://github.com/exwm/yt_clipper/commit/8a80ac133c8ff3ada1950973fe629a0e6e8b98a1))
612

13+
## [5.27.0](https://github.com/exwm/yt_clipper/compare/v5.26.0...v5.27.0) (2024-10-11)
714

815
### Features
916

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.27.0",
5+
"version": "5.27.1",
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.27.0"
3+
version = "5.27.1"
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.27.0"
1+
__version__ = "5.27.1"

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.27.0
7-
// @version 5.27.0
6+
// @version 5.27.1
7+
// @version 5.27.1
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.27.0';
38+
const __version__ = '5.27.1';
3939
import { Chart, ChartConfiguration } from 'chart.js';
4040
import { safeSetInnerHtml } from './util/util';
4141
import { stripIndent } from 'common-tags';

0 commit comments

Comments
 (0)