diff --git a/ChangeLog b/ChangeLog index 0cdca84..c497de4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2024-05-20 Tobias Bengfort + + *** 5.3.0 *** + + - allow to start URLs with offset (see https://www.w3.org/TR/media-frags/) + - fix compatibility with mpv 0.38 and above (thanks to @AlkyoneAoide) + 2023-03-09 Tobias Bengfort *** 5.2.0 *** diff --git a/cplay.py b/cplay.py index 2328f06..f7a6d99 100644 --- a/cplay.py +++ b/cplay.py @@ -13,7 +13,7 @@ import time from contextlib import contextmanager -__version__ = 'cplay-ng 5.2.0' +__version__ = 'cplay-ng 5.3.0' AUDIO_EXTENSIONS = [ 'mp3', 'ogg', 'oga', 'opus', 'flac', 'm4a', 'm4b', 'wav', 'mid', 'wma' diff --git a/pyproject.toml b/pyproject.toml index b5a173f..41d10d1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "cplay-ng" -version = "5.2.0" +version = "5.3.0" description = "A simple curses audio player" readme = "README.rst" license = {text = "GPLv2+"}