From b6acad99b9350a459323f043335a0b2d0529ab8a Mon Sep 17 00:00:00 2001 From: Nathan Gardiner Date: Tue, 15 Feb 2022 21:58:34 +1100 Subject: [PATCH] Release v1.2.4 --- CHANGELOG.md | 4 ++-- README.md | 2 +- docs/Software_Docker.md | 8 ++++---- docs/Software_Manual.md | 6 +++--- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c1b7500..c12afadf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,9 @@ This document logs the changes per release of TWCManager. -## v1.3.0 - Latest Development Version +## v1.2.5 - Latest Development Version -## v1.2.4 - 2022-02-06 +## v1.2.4 - 2022-02-15 * **Breaking Changes** * Due to changes introduced by Python 3.9, the minimum version of Python supported from v1.2.4 forward is **Python 3.6** diff --git a/README.md b/README.md index 0d089e8d..7cab4124 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # TWCManager -[![Stable Release](https://img.shields.io/badge/Stable_Release-1.2.3-blue)](https://github.com/ngardiner/TWCManager/releases/tag/v1.2.3) +[![Stable Release](https://img.shields.io/badge/Stable_Release-1.2.4-blue)](https://github.com/ngardiner/TWCManager/releases/tag/v1.2.4) [![Development Release](https://img.shields.io/badge/Devel_Release-1.3.0-green.svg)](https://github.com/ngardiner/TWCManager/tree/main) ![Build Status](https://github.com/ngardiner/TWCManager/actions/workflows/test_suite.yml/badge.svg) ![GitHub commits](https://img.shields.io/github/commit-activity/m/ngardiner/TWCManager) diff --git a/docs/Software_Docker.md b/docs/Software_Docker.md index 0183e2ea..e72728ed 100644 --- a/docs/Software_Docker.md +++ b/docs/Software_Docker.md @@ -17,7 +17,7 @@ curl https://raw.githubusercontent.com/ngardiner/TWCManager/main/contrib/docker/ ### Using Stable Versions (Recommended) -If you would like to opt for a more stable version, specify the version of TWCmanager that you would like to use. For example, to use the latest Stable version **v1.2.3**, use the following commands: +If you would like to opt for a more stable version, specify the version of TWCmanager that you would like to use. For example, to use the latest Stable version **v1.2.4**, use the following commands: ``` sudo apt-get update @@ -25,7 +25,7 @@ sudo apt-get install -y docker.io sudo pip3 install docker-compose -curl https://raw.githubusercontent.com/ngardiner/TWCManager/main/contrib/docker/docker-compose-v1.2.3.yml -o docker-compose.yml +curl https://raw.githubusercontent.com/ngardiner/TWCManager/main/contrib/docker/docker-compose-v1.2.4.yml -o docker-compose.yml ``` ## Configuring TWCManager for Docker @@ -99,12 +99,12 @@ grep -q :latest docker-compose.yml; [[ $? -eq 1 ]] && echo "Stable Version" || e ### Using a Stable version -If you are running a stable version of the Docker Image, you can upgrade to the latest stable version **v1.2.3** with the following commands: +If you are running a stable version of the Docker Image, you can upgrade to the latest stable version **v1.2.4** with the following commands: ``` sudo docker-compose -f docker-compose.yml down -curl https://raw.githubusercontent.com/ngardiner/TWCManager/main/contrib/docker/docker-compose-v1.2.3.yml -o docker-compose.yml +curl https://raw.githubusercontent.com/ngardiner/TWCManager/main/contrib/docker/docker-compose-v1.2.4.yml -o docker-compose.yml sudo docker-compose -f docker-compose.yml pull sudo docker-compose -d -f docker-compose.yml up ``` diff --git a/docs/Software_Manual.md b/docs/Software_Manual.md index b45b847f..2d1ad7e1 100644 --- a/docs/Software_Manual.md +++ b/docs/Software_Manual.md @@ -74,13 +74,13 @@ You can check that this command has been successful by running ```python --versi During this step, the source code and all related files will be cloned from the GitHub repository and installed into the appropriate location on your system. -We have two versions of the codebase that you may want to check out. The stable version is **v1.2.3**, which will only change for stability or urgent fixes. To check out **v1.2.3**, follow these steps: +We have two versions of the codebase that you may want to check out. The stable version is **v1.2.4**, which will only change for stability or urgent fixes. To check out **v1.2.4**, follow these steps: ``` git clone https://github.com/ngardiner/TWCManager cd TWCManager -git checkout v1.2.3 +git checkout v1.2.4 sudo make install ``` @@ -153,7 +153,7 @@ sudo systemctl disable twcmanager ### Stable Release -From version v1.2.3 of TWCManager and beyond, you can use pip to upgrade TWCManager to the latest stable version. +From version v1.2.4 of TWCManager and beyond, you can use pip to upgrade TWCManager to the latest stable version. To upgrade TWCManager to the latest version: