Skip to content

Commit

Permalink
Release v1.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ngardiner committed Feb 15, 2022
1 parent f3b9bbb commit b6acad9
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Expand Up @@ -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**
Expand Down
2 changes: 1 addition & 1 deletion 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)
Expand Down
8 changes: 4 additions & 4 deletions docs/Software_Docker.md
Expand Up @@ -17,15 +17,15 @@ 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
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
Expand Down Expand Up @@ -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
```
Expand Down
6 changes: 3 additions & 3 deletions docs/Software_Manual.md
Expand Up @@ -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
```

Expand Down Expand Up @@ -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:

Expand Down

0 comments on commit b6acad9

Please sign in to comment.