[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[shepherd] 01/02: support: Show 2022 in '--version' output.
From: |
Ludovic Courtès |
Subject: |
[shepherd] 01/02: support: Show 2022 in '--version' output. |
Date: |
Mon, 21 Mar 2022 08:47:00 -0400 (EDT) |
civodul pushed a commit to branch master
in repository shepherd.
commit 536c56caf2f2af5f251fae305a94fc3702911a4c
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Mon Mar 21 13:42:32 2022 +0100
support: Show 2022 in '--version' output.
* modules/shepherd/support.scm (display-version): Change year to 2022.
---
modules/shepherd/support.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/shepherd/support.scm b/modules/shepherd/support.scm
index 21c59f7..41ca1b8 100644
--- a/modules/shepherd/support.scm
+++ b/modules/shepherd/support.scm
@@ -1,6 +1,6 @@
;; support.scm -- Various support facilities, used by herd and shepherd.
;; Copyright (C) 2014 A.Sassmannshausen <alex.sassmannshausen@gmail.com>
-;; Copyright (C) 2013, 2014, 2016, 2018, 2020 Ludovic Courtès <ludo@gnu.org>
+;; Copyright (C) 2013-2014, 2016, 2018, 2020, 2022 Ludovic Courtès
<ludo@gnu.org>
;; Copyright (C) 2002, 2003 Wolfgang Jährling <wolfgang@pro-linux.de>
;; Copyright (C) 2016 Mathieu Lirzin <mthl@gnu.org>
;; Copyright (C) 2018 Danny Milosavljevic <dannym@scratchpost.org>
@@ -230,7 +230,7 @@ output port, and PROC's result is returned."
(define* (display-version #:optional (program-name (program-name)))
(local-output "~a (~a) ~a" program-name package-name Version)
;; TRANSLATORS: '~a' is a placeholder for the copyright year.
- (local-output (l10n "Copyright (C) ~a the Shepherd authors") 2020)
+ (local-output (l10n "Copyright (C) ~a the Shepherd authors") 2022)
(local-output (l10n "\
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.