Skip to content

Commit d144aa3

Browse files
committed
version: v5.21.2
1 parent 9a14f4d commit d144aa3

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.21.1"
1+
current_version: "5.21.2"
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.21.1'
15+
VERSION: '5.21.2'
1616

1717
jobs:
1818
build:

changelog.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,14 @@
22

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

5-
### [5.21.1](https://github.com/exwm/yt_clipper/compare/v5.21.0...v5.21.1) (2024-08-02)
5+
## [5.21.2](https://github.com/exwm/yt_clipper/compare/v5.21.1...v5.21.2) (2024-08-04)
6+
7+
8+
### Bug Fixes
9+
10+
* **clipper:** making clips with local input video broken due to missing Video Type ([9a14f4d](https://github.com/exwm/yt_clipper/commit/9a14f4d7266b764ff8f2aeb5decb69c1cbb0daeb))
11+
12+
## [5.21.1](https://github.com/exwm/yt_clipper/compare/v5.21.0...v5.21.1) (2024-08-02)
613

714

815
### Bug Fixes

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "yt_clipper",
33
"author": "exwm",
44
"homepage": "https://openuserjs.org/scripts/elwm/yt_clipper",
5-
"version": "5.21.1",
5+
"version": "5.21.2",
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.21.1"
3+
version = "5.21.2"
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.21.1"
1+
__version__ = "5.21.2"

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.21.1
7-
// @version 5.21.1
6+
// @version 5.21.2
7+
// @version 5.21.2
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.21.1';
38+
const __version__ = '5.21.2';
3939

4040
import { Chart, ChartConfiguration } from 'chart.js';
4141
import { safeHtml, stripIndent } from 'common-tags';

0 commit comments

Comments
 (0)