aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2023-01-23 14:01:23 +0100
committerLoïc Hoguin <[email protected]>2023-01-23 14:01:23 +0100
commite3a8fd19f44d6305e895c930709883a4700e2f61 (patch)
treeb5c572cc11c8e5144250734b04a6f4e701b067b7
parent096dfdfc76ca575a3d5431a359edc7019800eada (diff)
downloadgun-e3a8fd19f44d6305e895c930709883a4700e2f61.tar.gz
gun-e3a8fd19f44d6305e895c930709883a4700e2f61.tar.bz2
gun-e3a8fd19f44d6305e895c930709883a4700e2f61.zip
Update copyright lines in preparation for release
-rw-r--r--LICENSE2
-rw-r--r--doc/src/guide/introduction.asciidoc2
-rw-r--r--src/gun.erl2
-rw-r--r--src/gun_app.erl2
-rw-r--r--src/gun_conns_sup.erl2
-rw-r--r--src/gun_content_handler.erl2
-rw-r--r--src/gun_cookies.erl2
-rw-r--r--src/gun_cookies_list.erl2
-rw-r--r--src/gun_data_h.erl2
-rw-r--r--src/gun_default_event_h.erl2
-rw-r--r--src/gun_event.erl2
-rw-r--r--src/gun_http.erl2
-rw-r--r--src/gun_http2.erl2
-rw-r--r--src/gun_pool.erl2
-rw-r--r--src/gun_pool_events_h.erl2
-rw-r--r--src/gun_pools_sup.erl2
-rw-r--r--src/gun_protocols.erl2
-rw-r--r--src/gun_public_suffix.erl2
-rw-r--r--src/gun_public_suffix.erl.src2
-rw-r--r--src/gun_raw.erl2
-rw-r--r--src/gun_socks.erl2
-rw-r--r--src/gun_sse_h.erl2
-rw-r--r--src/gun_sup.erl2
-rw-r--r--src/gun_tcp.erl2
-rw-r--r--src/gun_tcp_proxy.erl2
-rw-r--r--src/gun_tls.erl2
-rw-r--r--src/gun_tls_proxy.erl2
-rw-r--r--src/gun_tls_proxy_cb.erl2
-rw-r--r--src/gun_tls_proxy_http2_connect.erl2
-rw-r--r--src/gun_tunnel.erl2
-rw-r--r--src/gun_ws.erl2
-rw-r--r--src/gun_ws_h.erl2
-rw-r--r--src/gun_ws_protocol.erl2
-rw-r--r--test/event_SUITE.erl2
-rw-r--r--test/flow_SUITE.erl2
-rw-r--r--test/gun_SUITE.erl2
-rw-r--r--test/gun_ct_hook.erl2
-rw-r--r--test/gun_test.erl2
-rw-r--r--test/gun_test_event_h.erl2
-rw-r--r--test/h2specd_SUITE.erl2
-rw-r--r--test/pool_SUITE.erl2
-rw-r--r--test/raw_SUITE.erl2
-rw-r--r--test/rfc6265bis_SUITE.erl2
-rw-r--r--test/rfc7230_SUITE.erl2
-rw-r--r--test/rfc7231_SUITE.erl2
-rw-r--r--test/rfc7540_SUITE.erl2
-rw-r--r--test/send_errors_SUITE.erl2
-rw-r--r--test/shutdown_SUITE.erl2
-rw-r--r--test/socks_SUITE.erl2
-rw-r--r--test/sse_SUITE.erl2
-rw-r--r--test/tunnel_SUITE.erl2
-rw-r--r--test/ws_SUITE.erl2
-rw-r--r--test/ws_autobahn_SUITE.erl2
53 files changed, 53 insertions, 53 deletions
diff --git a/LICENSE b/LICENSE
index 0b60cff..4f91160 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2013-2020, Loïc Hoguin <[email protected]>
+Copyright (c) 2013-2023, Loïc Hoguin <[email protected]>
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/doc/src/guide/introduction.asciidoc b/doc/src/guide/introduction.asciidoc
index 097cf39..948dde9 100644
--- a/doc/src/guide/introduction.asciidoc
+++ b/doc/src/guide/introduction.asciidoc
@@ -21,7 +21,7 @@ Gun is developed for Erlang/OTP 22.0 and newer.
Gun uses the ISC License.
----
-Copyright (c) 2013-2020, Loïc Hoguin <[email protected]>
+Copyright (c) 2013-2023, Loïc Hoguin <[email protected]>
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/gun.erl b/src/gun.erl
index 976a137..c29bd13 100644
--- a/src/gun.erl
+++ b/src/gun.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2013-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2013-2023, Loïc Hoguin <[email protected]>
%%
%% 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/gun_app.erl b/src/gun_app.erl
index 624e65f..34c297a 100644
--- a/src/gun_app.erl
+++ b/src/gun_app.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2013-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2013-2023, Loïc Hoguin <[email protected]>
%%
%% 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/gun_conns_sup.erl b/src/gun_conns_sup.erl
index bee266b..3535a47 100644
--- a/src/gun_conns_sup.erl
+++ b/src/gun_conns_sup.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2013-2021, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2013-2023, Loïc Hoguin <[email protected]>
%%
%% 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/gun_content_handler.erl b/src/gun_content_handler.erl
index 13c4cb2..c9a2678 100644
--- a/src/gun_content_handler.erl
+++ b/src/gun_content_handler.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2017-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2017-2023, Loïc Hoguin <[email protected]>
%%
%% 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/gun_cookies.erl b/src/gun_cookies.erl
index b07f4b5..8f6dd8d 100644
--- a/src/gun_cookies.erl
+++ b/src/gun_cookies.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2020-2023, Loïc Hoguin <[email protected]>
%%
%% 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/gun_cookies_list.erl b/src/gun_cookies_list.erl
index 77cc236..e7c588d 100644
--- a/src/gun_cookies_list.erl
+++ b/src/gun_cookies_list.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2020-2023, Loïc Hoguin <[email protected]>
%%
%% 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/gun_data_h.erl b/src/gun_data_h.erl
index 2158cbb..17019d2 100644
--- a/src/gun_data_h.erl
+++ b/src/gun_data_h.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2017-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2017-2023, Loïc Hoguin <[email protected]>
%%
%% 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/gun_default_event_h.erl b/src/gun_default_event_h.erl
index 5b90958..93244db 100644
--- a/src/gun_default_event_h.erl
+++ b/src/gun_default_event_h.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2019-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2019-2023, Loïc Hoguin <[email protected]>
%%
%% 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/gun_event.erl b/src/gun_event.erl
index ab6020b..8fc90bf 100644
--- a/src/gun_event.erl
+++ b/src/gun_event.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2019-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2019-2023, Loïc Hoguin <[email protected]>
%%
%% 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/gun_http.erl b/src/gun_http.erl
index 18d019e..58f4ed6 100644
--- a/src/gun_http.erl
+++ b/src/gun_http.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2014-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2014-2023, Loïc Hoguin <[email protected]>
%%
%% 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/gun_http2.erl b/src/gun_http2.erl
index c37b48a..4b35c76 100644
--- a/src/gun_http2.erl
+++ b/src/gun_http2.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2016-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2016-2023, Loïc Hoguin <[email protected]>
%%
%% 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/gun_pool.erl b/src/gun_pool.erl
index e99a364..66e2d18 100644
--- a/src/gun_pool.erl
+++ b/src/gun_pool.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2021, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2021-2023, Loïc Hoguin <[email protected]>
%%
%% 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/gun_pool_events_h.erl b/src/gun_pool_events_h.erl
index 1871a00..09a5e74 100644
--- a/src/gun_pool_events_h.erl
+++ b/src/gun_pool_events_h.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2021, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2021-2023, Loïc Hoguin <[email protected]>
%%
%% 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/gun_pools_sup.erl b/src/gun_pools_sup.erl
index 157b41b..af7ddf6 100644
--- a/src/gun_pools_sup.erl
+++ b/src/gun_pools_sup.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2021, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2021-2023, Loïc Hoguin <[email protected]>
%%
%% 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/gun_protocols.erl b/src/gun_protocols.erl
index d297019..4232e2f 100644
--- a/src/gun_protocols.erl
+++ b/src/gun_protocols.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2020-2023, Loïc Hoguin <[email protected]>
%%
%% 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/gun_public_suffix.erl b/src/gun_public_suffix.erl
index b624a8e..a687dd3 100644
--- a/src/gun_public_suffix.erl
+++ b/src/gun_public_suffix.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2020-2023, Loïc Hoguin <[email protected]>
%%
%% 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/gun_public_suffix.erl.src b/src/gun_public_suffix.erl.src
index b6b8c62..b16ec35 100644
--- a/src/gun_public_suffix.erl.src
+++ b/src/gun_public_suffix.erl.src
@@ -1,4 +1,4 @@
-%% Copyright (c) 2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2020-2023, Loïc Hoguin <[email protected]>
%%
%% 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/gun_raw.erl b/src/gun_raw.erl
index c5fbf45..50786e3 100644
--- a/src/gun_raw.erl
+++ b/src/gun_raw.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2019-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2019-2023, Loïc Hoguin <[email protected]>
%%
%% 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/gun_socks.erl b/src/gun_socks.erl
index 51f1e0b..1b868a2 100644
--- a/src/gun_socks.erl
+++ b/src/gun_socks.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2019-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2019-2023, Loïc Hoguin <[email protected]>
%%
%% 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/gun_sse_h.erl b/src/gun_sse_h.erl
index c53fada..03d190b 100644
--- a/src/gun_sse_h.erl
+++ b/src/gun_sse_h.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2017-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2017-2023, Loïc Hoguin <[email protected]>
%%
%% 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/gun_sup.erl b/src/gun_sup.erl
index a1270d7..b48fba4 100644
--- a/src/gun_sup.erl
+++ b/src/gun_sup.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2013-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2013-2023, Loïc Hoguin <[email protected]>
%%
%% 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/gun_tcp.erl b/src/gun_tcp.erl
index ffca8df..759b054 100644
--- a/src/gun_tcp.erl
+++ b/src/gun_tcp.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2011-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2011-2023, Loïc Hoguin <[email protected]>
%%
%% 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/gun_tcp_proxy.erl b/src/gun_tcp_proxy.erl
index 0107ac1..02f02b0 100644
--- a/src/gun_tcp_proxy.erl
+++ b/src/gun_tcp_proxy.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2020-2023, Loïc Hoguin <[email protected]>
%%
%% 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/gun_tls.erl b/src/gun_tls.erl
index c486449..408e3e5 100644
--- a/src/gun_tls.erl
+++ b/src/gun_tls.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2011-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2011-2023, Loïc Hoguin <[email protected]>
%%
%% 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/gun_tls_proxy.erl b/src/gun_tls_proxy.erl
index 38143dd..9dc67f6 100644
--- a/src/gun_tls_proxy.erl
+++ b/src/gun_tls_proxy.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2019-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2019-2023, Loïc Hoguin <[email protected]>
%%
%% 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/gun_tls_proxy_cb.erl b/src/gun_tls_proxy_cb.erl
index 801ceef..059f963 100644
--- a/src/gun_tls_proxy_cb.erl
+++ b/src/gun_tls_proxy_cb.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2019-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2019-2023, Loïc Hoguin <[email protected]>
%%
%% 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/gun_tls_proxy_http2_connect.erl b/src/gun_tls_proxy_http2_connect.erl
index 97cbcd7..653064f 100644
--- a/src/gun_tls_proxy_http2_connect.erl
+++ b/src/gun_tls_proxy_http2_connect.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2020-2023, Loïc Hoguin <[email protected]>
%%
%% 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/gun_tunnel.erl b/src/gun_tunnel.erl
index 3f7babf..c7fecc7 100644
--- a/src/gun_tunnel.erl
+++ b/src/gun_tunnel.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2020-2023, Loïc Hoguin <[email protected]>
%%
%% 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/gun_ws.erl b/src/gun_ws.erl
index fbd1738..c59686e 100644
--- a/src/gun_ws.erl
+++ b/src/gun_ws.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2015-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2015-2023, Loïc Hoguin <[email protected]>
%%
%% 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/gun_ws_h.erl b/src/gun_ws_h.erl
index fca3c9a..a7dc9fc 100644
--- a/src/gun_ws_h.erl
+++ b/src/gun_ws_h.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2017-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2017-2023, Loïc Hoguin <[email protected]>
%%
%% 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/gun_ws_protocol.erl b/src/gun_ws_protocol.erl
index 7b0cc5c..332b704 100644
--- a/src/gun_ws_protocol.erl
+++ b/src/gun_ws_protocol.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2022, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2022-2023, Loïc Hoguin <[email protected]>
%%
%% 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/event_SUITE.erl b/test/event_SUITE.erl
index ac8f1fc..e7def6e 100644
--- a/test/event_SUITE.erl
+++ b/test/event_SUITE.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2019-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2019-2023, Loïc Hoguin <[email protected]>
%%
%% 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/flow_SUITE.erl b/test/flow_SUITE.erl
index ea204e9..78064ef 100644
--- a/test/flow_SUITE.erl
+++ b/test/flow_SUITE.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2019-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2019-2023, Loïc Hoguin <[email protected]>
%%
%% 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/gun_SUITE.erl b/test/gun_SUITE.erl
index 22b0eeb..6d1b00b 100644
--- a/test/gun_SUITE.erl
+++ b/test/gun_SUITE.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2017-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2017-2023, Loïc Hoguin <[email protected]>
%%
%% 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/gun_ct_hook.erl b/test/gun_ct_hook.erl
index a858038..fc1a07f 100644
--- a/test/gun_ct_hook.erl
+++ b/test/gun_ct_hook.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2015-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2015-2023, Loïc Hoguin <[email protected]>
%%
%% 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/gun_test.erl b/test/gun_test.erl
index 79f70c9..5142898 100644
--- a/test/gun_test.erl
+++ b/test/gun_test.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2018-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2018-2023, Loïc Hoguin <[email protected]>
%%
%% 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/gun_test_event_h.erl b/test/gun_test_event_h.erl
index c0d6513..e9cb6b1 100644
--- a/test/gun_test_event_h.erl
+++ b/test/gun_test_event_h.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2020-2023, Loïc Hoguin <[email protected]>
%%
%% 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/h2specd_SUITE.erl b/test/h2specd_SUITE.erl
index b4c93f0..888e4f4 100644
--- a/test/h2specd_SUITE.erl
+++ b/test/h2specd_SUITE.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2018-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2018-2023, Loïc Hoguin <[email protected]>
%%
%% 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 1289415..62280eb 100644
--- a/test/pool_SUITE.erl
+++ b/test/pool_SUITE.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2021, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2021-2023, Loïc Hoguin <[email protected]>
%%
%% 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/raw_SUITE.erl b/test/raw_SUITE.erl
index 0d6d270..8597674 100644
--- a/test/raw_SUITE.erl
+++ b/test/raw_SUITE.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2019-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2019-2023, Loïc Hoguin <[email protected]>
%%
%% 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/rfc6265bis_SUITE.erl b/test/rfc6265bis_SUITE.erl
index 5c66c53..460aeb7 100644
--- a/test/rfc6265bis_SUITE.erl
+++ b/test/rfc6265bis_SUITE.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2020-2023, Loïc Hoguin <[email protected]>
%%
%% 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/rfc7230_SUITE.erl b/test/rfc7230_SUITE.erl
index b7c29e4..95c1eba 100644
--- a/test/rfc7230_SUITE.erl
+++ b/test/rfc7230_SUITE.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2019-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2019-2023, Loïc Hoguin <[email protected]>
%%
%% 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/rfc7231_SUITE.erl b/test/rfc7231_SUITE.erl
index a948b30..a5e1fe5 100644
--- a/test/rfc7231_SUITE.erl
+++ b/test/rfc7231_SUITE.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2018-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2018-2023, Loïc Hoguin <[email protected]>
%%
%% 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/rfc7540_SUITE.erl b/test/rfc7540_SUITE.erl
index fb5e4e8..10dd875 100644
--- a/test/rfc7540_SUITE.erl
+++ b/test/rfc7540_SUITE.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2018-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2018-2023, Loïc Hoguin <[email protected]>
%%
%% 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/send_errors_SUITE.erl b/test/send_errors_SUITE.erl
index e735c83..8cce875 100644
--- a/test/send_errors_SUITE.erl
+++ b/test/send_errors_SUITE.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2020, Björn Svensson <[email protected]>
+%% Copyright (c) 2020-2023, Björn Svensson <[email protected]>
%%
%% 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/shutdown_SUITE.erl b/test/shutdown_SUITE.erl
index 357fbfb..20ca879 100644
--- a/test/shutdown_SUITE.erl
+++ b/test/shutdown_SUITE.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2019-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2019-2023, Loïc Hoguin <[email protected]>
%%
%% 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/socks_SUITE.erl b/test/socks_SUITE.erl
index 9ec0ef1..bd88cbb 100644
--- a/test/socks_SUITE.erl
+++ b/test/socks_SUITE.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2019-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2019-2023, Loïc Hoguin <[email protected]>
%%
%% 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/sse_SUITE.erl b/test/sse_SUITE.erl
index 7d8d28f..e1fe840 100644
--- a/test/sse_SUITE.erl
+++ b/test/sse_SUITE.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2017-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2017-2023, Loïc Hoguin <[email protected]>
%%
%% 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/tunnel_SUITE.erl b/test/tunnel_SUITE.erl
index 084dfd8..39f7e45 100644
--- a/test/tunnel_SUITE.erl
+++ b/test/tunnel_SUITE.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2020-2023, Loïc Hoguin <[email protected]>
%%
%% 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/ws_SUITE.erl b/test/ws_SUITE.erl
index 06f1e93..ab67b89 100644
--- a/test/ws_SUITE.erl
+++ b/test/ws_SUITE.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2018-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2018-2023, Loïc Hoguin <[email protected]>
%%
%% 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/ws_autobahn_SUITE.erl b/test/ws_autobahn_SUITE.erl
index e2e5a81..e087432 100644
--- a/test/ws_autobahn_SUITE.erl
+++ b/test/ws_autobahn_SUITE.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2015-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2015-2023, Loïc Hoguin <[email protected]>
%%
%% Permission to use, copy, modify, and/or distribute this software for any
%% purpose with or without fee is hereby granted, provided that the above