From 16cbe856ebea808bf20834a696a87e74dbde3d94 Mon Sep 17 00:00:00 2001 From: juhlig Date: Mon, 18 Jan 2021 16:38:15 +0100 Subject: [PATCH] Update copyright --- LICENSE | 4 ++-- Makefile | 2 +- src/hnc.erl | 4 ++-- src/hnc_agent.erl | 4 ++-- src/hnc_app.erl | 4 ++-- src/hnc_pool.erl | 4 ++-- src/hnc_pool_sup.erl | 4 ++-- src/hnc_sup.erl | 4 ++-- src/hnc_worker.erl | 4 ++-- src/hnc_worker_sup.erl | 4 ++-- src/hnc_worker_sup_sup.erl | 4 ++-- test/hnc_ct_hook.erl | 4 ++-- test/hnc_test_worker.erl | 4 ++-- test/pool_SUITE.erl | 4 ++-- 14 files changed, 27 insertions(+), 27 deletions(-) diff --git a/LICENSE b/LICENSE index 784196f..6519675 100644 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,5 @@ -Copyright (c) 2020, Jan Uhlig -Copyright (c) 2020, Maria Scott +Copyright (c) 2020-2021, Jan Uhlig +Copyright (c) 2020-2021, Maria Scott Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above diff --git a/Makefile b/Makefile index 70e0caf..badf86c 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ PROJECT_DESCRIPTION = hnc - Erlang Worker Pool PROJECT_VERSION = 0.4.0 DEPS = hnc_pq -dep_hnc_pq = git https://github.com/hnc-agency/hnc-pq 0.1.0 +dep_hnc_pq = git https://github.com/hnc-agency/hnc-pq 0.1.2 CT_OPTS += -pa ebin -pa test -ct_hooks hnc_ct_hook [] diff --git a/src/hnc.erl b/src/hnc.erl index 5f24f9e..fa92d98 100644 --- a/src/hnc.erl +++ b/src/hnc.erl @@ -1,5 +1,5 @@ -%% Copyright (c) 2020, Jan Uhlig -%% Copyright (c) 2020, Maria Scott +%% Copyright (c) 2020-2021, Jan Uhlig +%% Copyright (c) 2020-2021, Maria Scott %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/hnc_agent.erl b/src/hnc_agent.erl index 7dae4ae..3836e09 100644 --- a/src/hnc_agent.erl +++ b/src/hnc_agent.erl @@ -1,5 +1,5 @@ -%% Copyright (c) 2020, Jan Uhlig -%% Copyright (c) 2020, Maria Scott +%% Copyright (c) 2020-2021, Jan Uhlig +%% Copyright (c) 2020-2021, Maria Scott %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/hnc_app.erl b/src/hnc_app.erl index 292548b..b39277b 100644 --- a/src/hnc_app.erl +++ b/src/hnc_app.erl @@ -1,5 +1,5 @@ -%% Copyright (c) 2020, Jan Uhlig -%% Copyright (c) 2020, Maria Scott +%% Copyright (c) 2020-2021, Jan Uhlig +%% Copyright (c) 2020-2021, Maria Scott %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/hnc_pool.erl b/src/hnc_pool.erl index 765be11..6bd3e63 100644 --- a/src/hnc_pool.erl +++ b/src/hnc_pool.erl @@ -1,5 +1,5 @@ -%% Copyright (c) 2020, Jan Uhlig -%% Copyright (c) 2020, Maria Scott +%% Copyright (c) 2020-2021, Jan Uhlig +%% Copyright (c) 2020-2021, Maria Scott %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/hnc_pool_sup.erl b/src/hnc_pool_sup.erl index 8ee6265..971d0af 100644 --- a/src/hnc_pool_sup.erl +++ b/src/hnc_pool_sup.erl @@ -1,5 +1,5 @@ -%% Copyright (c) 2020, Jan Uhlig -%% Copyright (c) 2020, Maria Scott +%% Copyright (c) 2020-2021, Jan Uhlig +%% Copyright (c) 2020-2021, Maria Scott %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/hnc_sup.erl b/src/hnc_sup.erl index fb3650c..ab1f3fa 100644 --- a/src/hnc_sup.erl +++ b/src/hnc_sup.erl @@ -1,5 +1,5 @@ -%% Copyright (c) 2020, Jan Uhlig -%% Copyright (c) 2020, Maria Scott +%% Copyright (c) 2020-2021, Jan Uhlig +%% Copyright (c) 2020-2021, Maria Scott %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/hnc_worker.erl b/src/hnc_worker.erl index 059fa11..11b42a9 100644 --- a/src/hnc_worker.erl +++ b/src/hnc_worker.erl @@ -1,5 +1,5 @@ -%% Copyright (c) 2020, Jan Uhlig -%% Copyright (c) 2020, Maria Scott +%% Copyright (c) 2020-2021, Jan Uhlig +%% Copyright (c) 2020-2021, Maria Scott %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/hnc_worker_sup.erl b/src/hnc_worker_sup.erl index ebce091..8822223 100644 --- a/src/hnc_worker_sup.erl +++ b/src/hnc_worker_sup.erl @@ -1,5 +1,5 @@ -%% Copyright (c) 2020, Jan Uhlig -%% Copyright (c) 2020, Maria Scott +%% Copyright (c) 2020-2021, Jan Uhlig +%% Copyright (c) 2020-2021, Maria Scott %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/hnc_worker_sup_sup.erl b/src/hnc_worker_sup_sup.erl index ee555bf..5f7b408 100644 --- a/src/hnc_worker_sup_sup.erl +++ b/src/hnc_worker_sup_sup.erl @@ -1,5 +1,5 @@ -%% Copyright (c) 2020, Jan Uhlig -%% Copyright (c) 2020, Maria Scott +%% Copyright (c) 2020-2021, Jan Uhlig +%% Copyright (c) 2020-2021, Maria Scott %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/test/hnc_ct_hook.erl b/test/hnc_ct_hook.erl index 690a60d..93ad681 100755 --- a/test/hnc_ct_hook.erl +++ b/test/hnc_ct_hook.erl @@ -1,5 +1,5 @@ -%% Copyright (c) 2020, Jan Uhlig -%% Copyright (c) 2020, Maria Scott +%% Copyright (c) 2020-2021, Jan Uhlig +%% Copyright (c) 2020-2021, Maria Scott %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/test/hnc_test_worker.erl b/test/hnc_test_worker.erl index 53b22da..56eb461 100644 --- a/test/hnc_test_worker.erl +++ b/test/hnc_test_worker.erl @@ -1,5 +1,5 @@ -%% Copyright (c) 2020, Jan Uhlig -%% Copyright (c) 2020, Maria Scott +%% Copyright (c) 2020-2021, Jan Uhlig +%% Copyright (c) 2020-2021, Maria Scott %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/test/pool_SUITE.erl b/test/pool_SUITE.erl index 6745699..3445f4d 100644 --- a/test/pool_SUITE.erl +++ b/test/pool_SUITE.erl @@ -1,5 +1,5 @@ -%% Copyright (c) 2020, Jan Uhlig -%% Copyright (c) 2020, Maria Scott +%% Copyright (c) 2020-2021, Jan Uhlig +%% Copyright (c) 2020-2021, Maria Scott %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above