From e67de57707e7f2a0300ef37c17767f8231b76aab Mon Sep 17 00:00:00 2001 From: Andrey Kurilin Date: Tue, 15 Jun 2021 15:18:01 +0300 Subject: [PATCH] Prepare for a new release 3.3.0 Change-Id: I20f1e3dfce8cbbfe9fdecb124d09897deefc3540 --- CHANGELOG.rst | 9 ++++++++- DOCKER_README.md | 12 ++++++------ 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 2f75b8762b..ef30cb158e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -17,7 +17,7 @@ Changelog .. Release notes for existing releases are MUTABLE! If there is something that was missed or can be improved, feel free to change it! -[x.x.x] - 202x-xx-xx +[3.3.0] - 2021-06-16 -------------------- Changed @@ -27,6 +27,13 @@ Changed * Switch docker image from ubuntu 18.04 to ubuntu 20.04 +* Move from Freenode to OFTC irc network + +Removed +~~~~~~~ + +* dependency on decorator library. + [3.2.0] - 2020-10-30 -------------------- diff --git a/DOCKER_README.md b/DOCKER_README.md index 5dc50d7b42..7fb0731d36 100644 --- a/DOCKER_README.md +++ b/DOCKER_README.md @@ -17,7 +17,7 @@ additional plugins: # for rally user is used. # # Tags of the image are the same as releases of xRally/Rally - FROM xrally/xrally:3.2.0 + FROM xrally/xrally:3.3.0 # "rally" user (which is selected by-default) is owner of "/rally" directory, # so there is no need to call chown or switch the user @@ -37,11 +37,11 @@ details) # How to run xrally container -First of all, you need to pull the container. We suggest to use the last -tagged version: +First, you need to pull the container. We suggest using the last tagged +version: - # pull the 3.2.0 image (the latest release at the point of writing the note) - $ docker pull xrally/xrally:3.2.0 + # pull the 3.3.0 image (the latest release at the point of writing the note) + $ docker pull xrally/xrally:3.3.0 **WARNING: never attach folders and volumes to `/rally` inside the container. It can break everything.** @@ -57,7 +57,7 @@ docker volumes or mount the directory. * use docker volumes. It is the easiest way. You just need to do something like: $ docker volume create --name rally_volume - $ docker run -v rally_volume:/home/rally/.rally xrally/xrally:3.2.0 env create --name "foo" + $ docker run -v rally_volume:/home/rally/.rally xrally/xrally:3.3.0 env create --name "foo" * mount outer directory inside the container