From 1ec52e20d3cde1d9cdec5dcaaaef979982043094 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=92scar=20Casajuana?= Date: Sat, 6 Jan 2024 00:06:56 +0100 Subject: [PATCH] Year update in license --- README.md | 2 +- cmd/version.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b603b9a..f469923 100644 --- a/README.md +++ b/README.md @@ -160,7 +160,7 @@ All the code contained in this repo is licensed under the [GNU Affero General Public License v3.0][license] Manga Downloader GO cli - Copyright (C) 2023 Òscar Casajuana Alonso + Copyright (C) 2023-2024 Òscar Casajuana Alonso This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by diff --git a/cmd/version.go b/cmd/version.go index dfc0c78..c22a2b0 100644 --- a/cmd/version.go +++ b/cmd/version.go @@ -20,7 +20,7 @@ var versionCmd = &cobra.Command{ Short: "Shows the version of the application", Run: func(cmd *cobra.Command, args []string) { fmt.Printf("%s - Manga volumes downloading tool\n", color.YellowString("Manga Downloader")) - fmt.Printf("All Rights Reserved © 2023 %s\n", color.HiBlackString("Òscar Casajuana Alonso")) + fmt.Printf("All Rights Reserved © 2023-2024 %s\n", color.HiBlackString("Òscar Casajuana Alonso")) fmt.Printf("Version: %s\n", color.MagentaString("%s (%s)", Version, Tag)) }, }