From 3e565365f655ca7c85f7d203245ef4b2ff6f2fd0 Mon Sep 17 00:00:00 2001 From: Manfred Touron Date: Tue, 14 Nov 2017 01:29:59 +0100 Subject: [PATCH] v1.1.0 --- CHANGELOG.md | 2 +- README.md | 2 +- main.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index edb3203a..df0e5456 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## master (unreleased) +## 1.1.0 (2017-11-15) * Improve versionning (static VERSION + dynamic GIT_* info) * Configuration management (backup + restore) diff --git a/README.md b/README.md index 3a1a0199..0f182fad 100644 --- a/README.md +++ b/README.md @@ -198,7 +198,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 -v "$(pwd):$(pwd)" -w "$(pwd)" moul/sshportal:v1.0.0 +docker run -v "$(pwd):$(pwd)" -w "$(pwd)" moul/sshportal:v1.1.0 ``` ## Manual Install diff --git a/main.go b/main.go index 769fe027..74b6d1bc 100644 --- a/main.go +++ b/main.go @@ -20,7 +20,7 @@ import ( var ( // VERSION should be updated by hand at each release - VERSION = "1.0.0" + VERSION = "1.1.0" // GIT_TAG will be overwritten automatically by the build system GIT_TAG string // GIT_SHA will be overwritten automatically by the build system