Skip to content

Commit

Permalink
version: v5.28.0
Browse files Browse the repository at this point in the history
  • Loading branch information
exwm committed Oct 25, 2024
1 parent 2c7fc9e commit 6c3074f
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .bumpit.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
current_version: "5.27.1"
current_version: "5.28.0"
base_branch: "master"
strategy:
name: "semver"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/yt_clipper_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
# Can work around to some degree using set-env
env:
NAME: yt_clipper
VERSION: '5.27.1'
VERSION: '5.28.0'

jobs:
build:
Expand Down
5 changes: 4 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@

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.

## [5.27.1](https://github.com/exwm/yt_clipper/compare/v5.27.0...v5.27.1) (2024-10-25)
## [5.28.0](https://github.com/exwm/yt_clipper/compare/v5.27.0...v5.28.0) (2024-10-25)

### Features

* **clipper:** on failure to parse markers JSON file, print friendlier error messages and debug info ([2c7fc9e](https://github.com/exwm/yt_clipper/commit/2c7fc9e07c52e805187942236f299f0870361a69))

### Bug Fixes

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "yt_clipper",
"description": "Mark up YouTube videos and quickly generate clipped webms.",
"author": "exwm",
"version": "5.27.1",
"version": "5.28.0",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "clipper"
version = "5.27.1"
version = "5.28.0"
description = "Quickly generate clipped webms."
authors = ["exwm <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/clipper/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "5.27.1"
__version__ = "5.28.0"
6 changes: 3 additions & 3 deletions src/markup/yt_clipper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// BANNER GUARD
// @locale english
// @name yt_clipper
// @version 5.27.1
// @version 5.27.1
// @version 5.28.0
// @version 5.28.0
// @description Mark up YouTube videos and quickly generate clipped webms.
// @author elwm
// @namespace https://github.com/exwm
Expand Down Expand Up @@ -35,7 +35,7 @@
// ==/UserScript==
// BANNER GUARD

const __version__ = '5.27.1';
const __version__ = '5.28.0';
import { Chart, ChartConfiguration } from 'chart.js';
import { safeSetInnerHtml } from './util/util';
import { stripIndent } from 'common-tags';
Expand Down

0 comments on commit 6c3074f

Please sign in to comment.