From 27758a03fa78982de3522a343f2fc32d1ab8c602 Mon Sep 17 00:00:00 2001 From: cupcakearmy Date: Wed, 22 Dec 2021 14:45:04 +0100 Subject: [PATCH] add help message --- CHANGELOG.md | 6 ++++++ cmd/root.go | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 207e676..d061a28 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.5.2] + +### Added + +- Add support link in help command + ## [1.5.1] - 2021-12-06 ### Changed diff --git a/cmd/root.go b/cmd/root.go index a37adfe..8b766ea 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -27,7 +27,7 @@ var rootCmd = &cobra.Command{ Version: internal.VERSION, Use: "autorestic", Short: "CLI Wrapper for restic", - Long: "Documentation: https://autorestic.vercel.app", + Long: "Documentation:\thttps://autorestic.vercel.app\nSupport:\thttps://discord.gg/wS7RpYTYd2", } func Execute() {