From 324319bb816cf52f516dbe828a4e4495148939ec Mon Sep 17 00:00:00 2001 From: Clemens Fries Date: Sun, 25 Nov 2018 10:57:37 +0100 Subject: Update copyright information --- clockrotz.go | 2 +- cmd/check.go | 2 +- cmd/create.go | 2 +- cmd/create_test.go | 2 +- cmd/debug.go | 2 +- cmd/next.go | 2 +- cmd/run.go | 2 +- cmd/run_test.go | 2 +- common/configuration.go | 2 +- common/configuration_test.go | 2 +- common/consts.go | 2 +- common/message.go | 2 +- common/message_test.go | 2 +- common/util.go | 2 +- common/util_test.go | 2 +- 15 files changed, 15 insertions(+), 15 deletions(-) diff --git a/clockrotz.go b/clockrotz.go index a88353a..d2edc65 100644 --- a/clockrotz.go +++ b/clockrotz.go @@ -1,6 +1,6 @@ /* clockrotz.go: main program * - * Copyright (C) 2016 Clemens Fries + * Copyright (C) 2016-2018 Clemens Fries * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/cmd/check.go b/cmd/check.go index 2b7316e..e825d29 100644 --- a/cmd/check.go +++ b/cmd/check.go @@ -1,6 +1,6 @@ /* check.go: check a given message for problems * - * Copyright (C) 2016 Clemens Fries + * Copyright (C) 2016-2018 Clemens Fries * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/cmd/create.go b/cmd/create.go index cba38b5..ee682fa 100644 --- a/cmd/create.go +++ b/cmd/create.go @@ -1,6 +1,6 @@ /* create.go: help creating a new message * - * Copyright (C) 2016 Clemens Fries + * Copyright (C) 2016-2018 Clemens Fries * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/cmd/create_test.go b/cmd/create_test.go index 388ce36..230c5fd 100644 --- a/cmd/create_test.go +++ b/cmd/create_test.go @@ -1,6 +1,6 @@ /* create_test.go: unit tests for 'create' command * - * Copyright (C) 2016 Clemens Fries + * Copyright (C) 2016-2018 Clemens Fries * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/cmd/debug.go b/cmd/debug.go index 03f529b..343f0be 100644 --- a/cmd/debug.go +++ b/cmd/debug.go @@ -1,6 +1,6 @@ /* debug.go: show debug information for a provided message * - * Copyright (C) 2016 Clemens Fries + * Copyright (C) 2016-2018 Clemens Fries * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/cmd/next.go b/cmd/next.go index f62aad2..15464bd 100644 --- a/cmd/next.go +++ b/cmd/next.go @@ -1,6 +1,6 @@ /* next.go: show upcoming messages * - * Copyright (C) 2016 Clemens Fries + * Copyright (C) 2016-2018 Clemens Fries * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/cmd/run.go b/cmd/run.go index 4ba7b16..43ca6d7 100644 --- a/cmd/run.go +++ b/cmd/run.go @@ -1,6 +1,6 @@ /* run.go: send pending messages * - * Copyright (C) 2016 Clemens Fries + * Copyright (C) 2016-2018 Clemens Fries * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/cmd/run_test.go b/cmd/run_test.go index 2c405e9..84f84e5 100644 --- a/cmd/run_test.go +++ b/cmd/run_test.go @@ -1,6 +1,6 @@ /* run_test.go: unit tests for 'run' command * - * Copyright (C) 2016 Clemens Fries + * Copyright (C) 2016-2018 Clemens Fries * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/common/configuration.go b/common/configuration.go index 2948116..9742232 100644 --- a/common/configuration.go +++ b/common/configuration.go @@ -1,6 +1,6 @@ /* configuration.go: module for managing message properties * - * Copyright (C) 2016 Clemens Fries + * Copyright (C) 2016-2018 Clemens Fries * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/common/configuration_test.go b/common/configuration_test.go index dbf2697..e2cc36b 100644 --- a/common/configuration_test.go +++ b/common/configuration_test.go @@ -1,6 +1,6 @@ /* configuration_test.go: unit tests for the configuration module * - * Copyright (C) 2016 Clemens Fries + * Copyright (C) 2016-2018 Clemens Fries * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/common/consts.go b/common/consts.go index 822f413..ca1a91d 100644 --- a/common/consts.go +++ b/common/consts.go @@ -1,6 +1,6 @@ /* consts.go: global constants * - * Copyright (C) 2016 Clemens Fries + * Copyright (C) 2016-2018 Clemens Fries * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/common/message.go b/common/message.go index fbea53d..a27bad7 100644 --- a/common/message.go +++ b/common/message.go @@ -1,6 +1,6 @@ /* message.go: module for managing message information * - * Copyright (C) 2016 Clemens Fries + * Copyright (C) 2016-2018 Clemens Fries * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/common/message_test.go b/common/message_test.go index 74ed09f..6d5bd1f 100644 --- a/common/message_test.go +++ b/common/message_test.go @@ -1,6 +1,6 @@ /* message_test.go: unit tests for the message module * - * Copyright (C) 2016 Clemens Fries + * Copyright (C) 2016-2018 Clemens Fries * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/common/util.go b/common/util.go index a4422c7..c9668b3 100644 --- a/common/util.go +++ b/common/util.go @@ -1,6 +1,6 @@ /* util.go: various utility functions * - * Copyright (C) 2016 Clemens Fries + * Copyright (C) 2016-2018 Clemens Fries * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/common/util_test.go b/common/util_test.go index 201cfe0..afcc87c 100644 --- a/common/util_test.go +++ b/common/util_test.go @@ -1,6 +1,6 @@ /* util_test.go: unit tests for utility functions * - * Copyright (C) 2016 Clemens Fries + * Copyright (C) 2016-2018 Clemens Fries * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by -- cgit