cplay-ng

simple curses audio player
git clone https://git.ce9e.org/cplay-ng.git

commit
1fb5891e90a43b3a9aa8bc503009525009bf5403
parent
a8432fb5108e3af33851c5707b49dde9fb4b16b1
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2021-08-30 18:32
bump version to 5.0.1

Diffstat

M ChangeLog 6 ++++++
M cplay.py 2 +-
M setup.py 2 +-

3 files changed, 8 insertions, 2 deletions


diff --git a/ChangeLog b/ChangeLog

@@ -1,5 +1,11 @@
    1     1 2021-08-30  Tobias Bengfort <tobias.bengfort@posteo.de>
    2     2 
   -1     3 	*** 5.0.1 ***
   -1     4 
   -1     5 	- Fix in-app version number
   -1     6 
   -1     7 2021-08-30  Tobias Bengfort <tobias.bengfort@posteo.de>
   -1     8 
    3     9 	*** 5.0.0 ***
    4    10 
    5    11 	- changes to playlists are no longer automatically written back to their

diff --git a/cplay.py b/cplay.py

@@ -13,7 +13,7 @@ import termios
   13    13 import time
   14    14 from contextlib import contextmanager
   15    15 
   16    -1 __version__ = 'cplay-ng 4.0.0'
   -1    16 __version__ = 'cplay-ng 5.0.1'
   17    17 
   18    18 AUDIO_EXTENSIONS = [
   19    19     'mp3', 'ogg', 'oga', 'opus', 'flac', 'm4a', 'm4b', 'wav', 'mid', 'wma'

diff --git a/setup.py b/setup.py

@@ -7,7 +7,7 @@ README = open('README.rst').read()
    7     7 
    8     8 setup(
    9     9     name='cplay-ng',
   10    -1     version='5.0.0',
   -1    10     version='5.0.1',
   11    11     description='A simple curses audio player',
   12    12     long_description=README,
   13    13     url='https://github.com/xi/cplay-ng',