From 98d4360a76f495bdbe30afe193159f06ec714a85 Mon Sep 17 00:00:00 2001 From: Manfred Touron Date: Wed, 22 Nov 2017 15:15:00 +0100 Subject: [PATCH] v1.2.0 --- CHANGELOG.md | 2 +- README.md | 6 +++--- main.go | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f02e9c..700ab70 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## master (unreleased) +## v1.2.0 (2017-11-22) * Support adding multiple `--group` links on `host create` and `user create` * Use govalidator to perform more consistent input validation diff --git a/README.md b/README.md index 1990c3b..8abee30 100644 --- a/README.md +++ b/README.md @@ -200,7 +200,7 @@ An [automated build is setup on the Docker Hub](https://hub.docker.com/r/moul/ss ```console # Start a server in background # mount `pwd` to persist the sqlite database file -docker run -p 2222:2222 -d --name=sshportal -v "$(pwd):$(pwd)" -w "$(pwd)" moul/sshportal:v1.1.0 +docker run -p 2222:2222 -d --name=sshportal -v "$(pwd):$(pwd)" -w "$(pwd)" moul/sshportal:v1.2.0 # check logs (mandatory on first run to get the administrator invite token) docker logs -f sshportal @@ -209,7 +209,7 @@ docker logs -f sshportal The easier way to upgrade sshportal is to do the following: ```sh -# we consider you were using the version v1.0.0 and you want to use the new version v1.1.0 +# we consider you were using the version v1.1.0 and you want to use the new version v1.2.0 # stop and rename the last working container + backup the database docker stop sshportal @@ -217,7 +217,7 @@ docker rename sshportal sshportal_old cp sshportal.db sshportal.db.bkp # run the new version -docker run -p 2222:2222 -d --name=sshportal -v "$(pwd):$(pwd)" -w "$(pwd)" moul/sshportal:v1.1.0 +docker run -p 2222:2222 -d --name=sshportal -v "$(pwd):$(pwd)" -w "$(pwd)" moul/sshportal:v1.2.0 # check the logs for migration or cross-version incompabitility errors docker logs -f sshportal ``` diff --git a/main.go b/main.go index f79753c..2ecb2b4 100644 --- a/main.go +++ b/main.go @@ -20,7 +20,7 @@ import ( var ( // VERSION should be updated by hand at each release - VERSION = "1.1.0+dev" + VERSION = "1.2.0" // GIT_TAG will be overwritten automatically by the build system GIT_TAG string // GIT_SHA will be overwritten automatically by the build system