Skip to content

Commit b73f970

Browse files
committed
version: v5.22.0
1 parent 95d4b5c commit b73f970

File tree

7 files changed

+21
-9
lines changed

7 files changed

+21
-9
lines changed

.bumpit.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
current_version: "5.21.2"
1+
current_version: "5.22.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.21.2'
15+
VERSION: '5.22.0'
1616

1717
jobs:
1818
build:

changelog.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
# Changelog
22

3-
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.
3+
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.
4+
5+
## [5.22.0](https://github.com/exwm/yt_clipper/compare/v5.21.2...v5.22.0) (2024-08-06)
6+
7+
8+
### Bug Fixes
9+
10+
* **markup:** use DOMPurify for more robust html sanitization, use trusted types with browsers that support it ([85cb724](https://github.com/exwm/yt_clipper/commit/85cb72468054f97ef400b53b2bd51a43389dae14))
11+
12+
13+
### Major Dependency Upgrades
14+
15+
* **clipper:** update yt-dlp dependency to v2024.08.06 ([20c80f3](https://github.com/exwm/yt_clipper/commit/20c80f3e12201c6097f354c576b6a3bb1a805888))
416

517
## [5.21.2](https://github.com/exwm/yt_clipper/compare/v5.21.1...v5.21.2) (2024-08-04)
618

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.2",
5+
"version": "5.22.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.21.2"
3+
version = "5.22.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.21.2"
1+
__version__ = "5.22.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.21.2
7-
// @version 5.21.2
6+
// @version 5.22.0
7+
// @version 5.22.0
88
// @description Mark up YouTube videos and quickly generate clipped webms.
99
// @author elwm
1010
// @namespace https://github.com/exwm
@@ -36,7 +36,7 @@
3636
// ==/UserScript==
3737
// BANNER GUARD
3838

39-
const __version__ = '5.21.2';
39+
const __version__ = '5.22.0';
4040
import { Chart, ChartConfiguration } from 'chart.js';
4141
import { safeSetInnerHtml } from './util/util';
4242
import { stripIndent } from 'common-tags';

0 commit comments

Comments
 (0)