diff --git a/README.md b/README.md index b883820..7e7143d 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,8 @@ A simple console manager for OverDrive/Libby loans. Originally a python port of odmpy also has useful features for audiobooks such as adding of chapters metadata and merging of multipart files into a single `.mp3` or `.m4b` (requires [ffmpeg](https://ffmpeg.org/)). +Works on Linux, macOS, and Windows. + Requires Python >= 3.7. ![Screenshot](https://user-images.githubusercontent.com/104607/222746903-0089bea5-ba3f-4eef-8e14-b4870a5bbb27.png) @@ -23,7 +25,7 @@ Requires Python >= 3.7. ```bash # Install / Update to specific version -python3 -m pip install git+https://git@github.com/ping/odmpy.git@0.7.5 --upgrade +python3 -m pip install git+https://git@github.com/ping/odmpy.git@0.7.6 --upgrade # Install / Update from latest source python3 -m pip install git+https://git@github.com/ping/odmpy.git --upgrade --force-reinstall @@ -76,7 +78,7 @@ Available commands: ret Return an audiobook loan file (odm). info Get information about an audiobook loan file (odm). -Version 0.7.5. [Python 3.10.6-darwin] Source at https://github.com/ping/odmpy +Version 0.7.6. [Python 3.10.6-darwin] Source at https://github.com/ping/odmpy ``` ### Download via Libby diff --git a/odmpy/odm.py b/odmpy/odm.py index e94724f..c3ad998 100644 --- a/odmpy/odm.py +++ b/odmpy/odm.py @@ -68,7 +68,7 @@ requests_logger.setLevel(logging.ERROR) requests_logger.propagate = True -__version__ = "0.7.5" # also update ../setup.py +__version__ = "0.7.6" # also update ../setup.py TAGS_ENDPOINT = "https://api.github.com/repos/ping/odmpy/tags" REPOSITORY_URL = "https://github.com/ping/odmpy" diff --git a/setup.py b/setup.py index dd11271..fdcd5d4 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ __author__ = "ping" __url__ = "https://github.com/ping/odmpy/" -__version__ = "0.7.5" # also update odmpy/odm.py +__version__ = "0.7.6" # also update odmpy/odm.py __long_description__ = """