From 799c0fce39c4cec95e621cd6efdf10023240244e Mon Sep 17 00:00:00 2001 From: meeb Date: Thu, 18 Feb 2021 17:29:03 +1100 Subject: [PATCH] bump to v0.9 --- README.md | 8 ++++---- tubesync/tubesync/settings.py | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 5bdec82..8c7ea29 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ hopefully, quite reliable. # Latest container image ```yaml -ghcr.io/meeb/tubesync:v0.8 +ghcr.io/meeb/tubesync:v0.9 ``` **NOTE: the `:latest` tag does exist, but will contain in-development commits and may @@ -102,7 +102,7 @@ Finally, download and run the container: ```bash # Pull a versioned image -$ docker pull ghcr.io/meeb/tubesync:v0.8 +$ docker pull ghcr.io/meeb/tubesync:v0.9 # Start the container using your user ID and group ID $ docker run \ -d \ @@ -113,7 +113,7 @@ $ docker run \ -v /some/directory/tubesync-config:/config \ -v /some/directory/tubesync-downloads:/downloads \ -p 4848:4848 \ - ghcr.io/meeb/tubesync:v0.8 + ghcr.io/meeb/tubesync:v0.9 ``` Once running, open `http://localhost:4848` in your browser and you should see the @@ -125,7 +125,7 @@ Alternatively, for Docker Compose, you can use something like: ```yaml tubesync: - image: ghcr.io/meeb/tubesync:v0.8 + image: ghcr.io/meeb/tubesync:v0.9 container_name: tubesync restart: unless-stopped ports: diff --git a/tubesync/tubesync/settings.py b/tubesync/tubesync/settings.py index 51a1c29..f56d1c8 100644 --- a/tubesync/tubesync/settings.py +++ b/tubesync/tubesync/settings.py @@ -6,7 +6,7 @@ CONFIG_BASE_DIR = BASE_DIR DOWNLOADS_BASE_DIR = BASE_DIR -VERSION = 0.8 +VERSION = 0.9 SECRET_KEY = '' DEBUG = False ALLOWED_HOSTS = []