From bfd3be14728975f4f9ce6ce48139513d7964f4e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Thu, 24 Nov 2016 11:55:16 +0100 Subject: Update copyright year --- LICENSE | 2 +- examples/tcp_echo/relx.config | 2 +- src/ranch.erl | 2 +- src/ranch_acceptor.erl | 2 +- src/ranch_acceptors_sup.erl | 2 +- src/ranch_app.erl | 2 +- src/ranch_conns_sup.erl | 2 +- src/ranch_listener_sup.erl | 2 +- src/ranch_protocol.erl | 2 +- src/ranch_server.erl | 2 +- src/ranch_ssl.erl | 2 +- src/ranch_sup.erl | 2 +- src/ranch_tcp.erl | 2 +- src/ranch_transport.erl | 2 +- test/acceptor_SUITE.erl | 2 +- test/ranch_ct_hook.erl | 2 +- test/sendfile_SUITE.erl | 2 +- test/shutdown_SUITE.erl | 2 +- 18 files changed, 18 insertions(+), 18 deletions(-) diff --git a/LICENSE b/LICENSE index 4dda821..6db4aea 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2011-2015, Loïc Hoguin +Copyright (c) 2011-2016, Loïc Hoguin 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/examples/tcp_echo/relx.config b/examples/tcp_echo/relx.config index a850b71..5137ff7 100644 --- a/examples/tcp_echo/relx.config +++ b/examples/tcp_echo/relx.config @@ -1,2 +1,2 @@ -{release, {tcp_echo_example, "1"}, [tcp_echo]}. +{release, {tcp_echo_example, "1"}, [tcp_echo, observer, wx, runtime_tools]}. {extended_start_script, true}. diff --git a/src/ranch.erl b/src/ranch.erl index a219784..31c4761 100644 --- a/src/ranch.erl +++ b/src/ranch.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2011-2015, Loïc Hoguin +%% Copyright (c) 2011-2016, Loïc Hoguin %% %% 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/ranch_acceptor.erl b/src/ranch_acceptor.erl index e889ba4..34bedb7 100644 --- a/src/ranch_acceptor.erl +++ b/src/ranch_acceptor.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2011-2015, Loïc Hoguin +%% Copyright (c) 2011-2016, Loïc Hoguin %% %% 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/ranch_acceptors_sup.erl b/src/ranch_acceptors_sup.erl index d716a33..24cce2b 100644 --- a/src/ranch_acceptors_sup.erl +++ b/src/ranch_acceptors_sup.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2011-2015, Loïc Hoguin +%% Copyright (c) 2011-2016, Loïc Hoguin %% %% 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/ranch_app.erl b/src/ranch_app.erl index d972151..c3fa395 100644 --- a/src/ranch_app.erl +++ b/src/ranch_app.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2011-2015, Loïc Hoguin +%% Copyright (c) 2011-2016, Loïc Hoguin %% %% 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/ranch_conns_sup.erl b/src/ranch_conns_sup.erl index c448374..de20104 100644 --- a/src/ranch_conns_sup.erl +++ b/src/ranch_conns_sup.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2011-2015, Loïc Hoguin +%% Copyright (c) 2011-2016, Loïc Hoguin %% %% 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/ranch_listener_sup.erl b/src/ranch_listener_sup.erl index 2f697d6..7771fee 100644 --- a/src/ranch_listener_sup.erl +++ b/src/ranch_listener_sup.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2011-2015, Loïc Hoguin +%% Copyright (c) 2011-2016, Loïc Hoguin %% %% 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/ranch_protocol.erl b/src/ranch_protocol.erl index 1f70962..e33a0ac 100644 --- a/src/ranch_protocol.erl +++ b/src/ranch_protocol.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2012-2015, Loïc Hoguin +%% Copyright (c) 2012-2016, Loïc Hoguin %% %% 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/ranch_server.erl b/src/ranch_server.erl index 4aa858d..4ec4262 100644 --- a/src/ranch_server.erl +++ b/src/ranch_server.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2012-2015, Loïc Hoguin +%% Copyright (c) 2012-2016, Loïc Hoguin %% %% 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/ranch_ssl.erl b/src/ranch_ssl.erl index 0385065..0d278a9 100644 --- a/src/ranch_ssl.erl +++ b/src/ranch_ssl.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2011-2015, Loïc Hoguin +%% Copyright (c) 2011-2016, Loïc Hoguin %% %% 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/ranch_sup.erl b/src/ranch_sup.erl index e078fd7..0e69de6 100644 --- a/src/ranch_sup.erl +++ b/src/ranch_sup.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2011-2015, Loïc Hoguin +%% Copyright (c) 2011-2016, Loïc Hoguin %% %% 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/ranch_tcp.erl b/src/ranch_tcp.erl index c2ad148..536b5fe 100644 --- a/src/ranch_tcp.erl +++ b/src/ranch_tcp.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2011-2015, Loïc Hoguin +%% Copyright (c) 2011-2016, Loïc Hoguin %% %% 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/ranch_transport.erl b/src/ranch_transport.erl index 873bffe..279653b 100644 --- a/src/ranch_transport.erl +++ b/src/ranch_transport.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2012-2015, Loïc Hoguin +%% Copyright (c) 2012-2016, Loïc Hoguin %% %% 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/acceptor_SUITE.erl b/test/acceptor_SUITE.erl index 4b6f022..a60f284 100644 --- a/test/acceptor_SUITE.erl +++ b/test/acceptor_SUITE.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2011-2015, Loïc Hoguin +%% Copyright (c) 2011-2016, Loïc Hoguin %% %% 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/ranch_ct_hook.erl b/test/ranch_ct_hook.erl index c26850e..5e1e8fb 100644 --- a/test/ranch_ct_hook.erl +++ b/test/ranch_ct_hook.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2015, Loïc Hoguin +%% Copyright (c) 2015-2016, Loïc Hoguin %% %% 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/sendfile_SUITE.erl b/test/sendfile_SUITE.erl index c6c9524..fa8e843 100644 --- a/test/sendfile_SUITE.erl +++ b/test/sendfile_SUITE.erl @@ -1,5 +1,5 @@ %% Copyright (c) 2013, James Fish -%% Copyright (c) 2015, Loïc Hoguin +%% Copyright (c) 2015-2016, Loïc Hoguin %% %% 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 212d14c..e62a1a9 100644 --- a/test/shutdown_SUITE.erl +++ b/test/shutdown_SUITE.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2013-2015, Loïc Hoguin +%% Copyright (c) 2013-2016, Loïc Hoguin %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above -- cgit v1.2.3