summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorengn33r <engn33r@users.noreply.github.com>2021-12-31 22:18:39 -0500
committerengn33r <engn33r@users.noreply.github.com>2021-12-31 22:18:39 -0500
commit81fa70d259ce1609b3fb1bf66c8a9bed81a3f28c (patch)
tree436c21bdae3551263b8e6f728be9c2de9d79d26d
parentda1b0509ecbd71b3ad1e37a1768b328711d9e955 (diff)
downloadwebsocket-client-81fa70d259ce1609b3fb1bf66c8a9bed81a3f28c.tar.gz
Update copyright year to 2022
-rw-r--r--LICENSE2
-rw-r--r--compliance/test_fuzzingclient.py2
-rw-r--r--docs/source/about.rst2
-rw-r--r--docs/source/conf.py2
-rw-r--r--setup.py2
-rw-r--r--websocket/__init__.py2
-rw-r--r--websocket/_abnf.py2
-rw-r--r--websocket/_app.py2
-rw-r--r--websocket/_cookiejar.py2
-rw-r--r--websocket/_core.py2
-rw-r--r--websocket/_exceptions.py2
-rw-r--r--websocket/_handshake.py2
-rw-r--r--websocket/_http.py2
-rw-r--r--websocket/_logging.py2
-rw-r--r--websocket/_socket.py2
-rw-r--r--websocket/_ssl_compat.py2
-rw-r--r--websocket/_url.py2
-rw-r--r--websocket/_utils.py2
-rwxr-xr-xwebsocket/_wsdump.py2
-rw-r--r--websocket/tests/test_abnf.py2
-rw-r--r--websocket/tests/test_app.py2
-rw-r--r--websocket/tests/test_cookiejar.py2
-rw-r--r--websocket/tests/test_http.py2
-rw-r--r--websocket/tests/test_url.py2
-rw-r--r--websocket/tests/test_websocket.py2
25 files changed, 25 insertions, 25 deletions
diff --git a/LICENSE b/LICENSE
index 27269dd..a5db00e 100644
--- a/LICENSE
+++ b/LICENSE
@@ -187,7 +187,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.
- Copyright 2021 engn33r
+ Copyright 2022 engn33r
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/compliance/test_fuzzingclient.py b/compliance/test_fuzzingclient.py
index a5157bd..30f1dde 100644
--- a/compliance/test_fuzzingclient.py
+++ b/compliance/test_fuzzingclient.py
@@ -6,7 +6,7 @@
test_fuzzingclient.py
websocket - WebSocket client library for Python
-Copyright 2021 engn33r
+Copyright 2022 engn33r
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/docs/source/about.rst b/docs/source/about.rst
index 58dca79..f09aa17 100644
--- a/docs/source/about.rst
+++ b/docs/source/about.rst
@@ -4,7 +4,7 @@ About
The websocket-client project was started in 2011, but experienced a slowdown in
development in 2019-2020. The original creator of this project was
-`liris <https://github.com/liris>`_ and the current maintainer (as of 2021) is
+`liris <https://github.com/liris>`_ and the current maintainer (since 2021) is
`engn33r <https://github.com/engn33r>`_. The project is in the process of being
rejuvenated, so any edits or suggestions are appreciated. No typo is too small
for a pull request! See the :ref:`contributing` page for more info.
diff --git a/docs/source/conf.py b/docs/source/conf.py
index 803e50a..7efc02d 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -30,7 +30,7 @@ def setup(app):
# -- Project information -----------------------------------------------------
project = 'websocket-client'
-copyright = '2021'
+copyright = '2022'
author = 'liris'
# The full version, including alpha/beta/rc tags
diff --git a/setup.py b/setup.py
index 6e034b0..b70efeb 100644
--- a/setup.py
+++ b/setup.py
@@ -6,7 +6,7 @@
setup.py
websocket - WebSocket client library for Python
-Copyright 2021 engn33r
+Copyright 2022 engn33r
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/websocket/__init__.py b/websocket/__init__.py
index 05aae2b..ad9409b 100644
--- a/websocket/__init__.py
+++ b/websocket/__init__.py
@@ -2,7 +2,7 @@
__init__.py
websocket - WebSocket client library for Python
-Copyright 2021 engn33r
+Copyright 2022 engn33r
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/websocket/_abnf.py b/websocket/_abnf.py
index 7aebc25..025a8ee 100644
--- a/websocket/_abnf.py
+++ b/websocket/_abnf.py
@@ -6,7 +6,7 @@
_abnf.py
websocket - WebSocket client library for Python
-Copyright 2021 engn33r
+Copyright 2022 engn33r
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/websocket/_app.py b/websocket/_app.py
index 1afd3d2..7b757ce 100644
--- a/websocket/_app.py
+++ b/websocket/_app.py
@@ -6,7 +6,7 @@
_app.py
websocket - WebSocket client library for Python
-Copyright 2021 engn33r
+Copyright 2022 engn33r
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/websocket/_cookiejar.py b/websocket/_cookiejar.py
index 8785383..ea98e1f 100644
--- a/websocket/_cookiejar.py
+++ b/websocket/_cookiejar.py
@@ -6,7 +6,7 @@
_cookiejar.py
websocket - WebSocket client library for Python
-Copyright 2021 engn33r
+Copyright 2022 engn33r
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/websocket/_core.py b/websocket/_core.py
index e26c8b1..3f1d73a 100644
--- a/websocket/_core.py
+++ b/websocket/_core.py
@@ -8,7 +8,7 @@ WebSocket Python client
_core.py
websocket - WebSocket client library for Python
-Copyright 2021 engn33r
+Copyright 2022 engn33r
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/websocket/_exceptions.py b/websocket/_exceptions.py
index b92b1f4..1ce3069 100644
--- a/websocket/_exceptions.py
+++ b/websocket/_exceptions.py
@@ -6,7 +6,7 @@ Define WebSocket exceptions
_exceptions.py
websocket - WebSocket client library for Python
-Copyright 2021 engn33r
+Copyright 2022 engn33r
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/websocket/_handshake.py b/websocket/_handshake.py
index f9dabb5..88bb6fb 100644
--- a/websocket/_handshake.py
+++ b/websocket/_handshake.py
@@ -2,7 +2,7 @@
_handshake.py
websocket - WebSocket client library for Python
-Copyright 2021 engn33r
+Copyright 2022 engn33r
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/websocket/_http.py b/websocket/_http.py
index 1c4956c..04f32f5 100644
--- a/websocket/_http.py
+++ b/websocket/_http.py
@@ -2,7 +2,7 @@
_http.py
websocket - WebSocket client library for Python
-Copyright 2021 engn33r
+Copyright 2022 engn33r
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/websocket/_logging.py b/websocket/_logging.py
index 480d43b..4d440c9 100644
--- a/websocket/_logging.py
+++ b/websocket/_logging.py
@@ -6,7 +6,7 @@
_logging.py
websocket - WebSocket client library for Python
-Copyright 2021 engn33r
+Copyright 2022 engn33r
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/websocket/_socket.py b/websocket/_socket.py
index 4d9cc09..b56030e 100644
--- a/websocket/_socket.py
+++ b/websocket/_socket.py
@@ -6,7 +6,7 @@
_socket.py
websocket - WebSocket client library for Python
-Copyright 2021 engn33r
+Copyright 2022 engn33r
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/websocket/_ssl_compat.py b/websocket/_ssl_compat.py
index f4af524..e227840 100644
--- a/websocket/_ssl_compat.py
+++ b/websocket/_ssl_compat.py
@@ -2,7 +2,7 @@
_ssl_compat.py
websocket - WebSocket client library for Python
-Copyright 2021 engn33r
+Copyright 2022 engn33r
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/websocket/_url.py b/websocket/_url.py
index f2a5501..0875242 100644
--- a/websocket/_url.py
+++ b/websocket/_url.py
@@ -5,7 +5,7 @@
_url.py
websocket - WebSocket client library for Python
-Copyright 2021 engn33r
+Copyright 2022 engn33r
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/websocket/_utils.py b/websocket/_utils.py
index 21fc437..fdcf345 100644
--- a/websocket/_utils.py
+++ b/websocket/_utils.py
@@ -2,7 +2,7 @@
_url.py
websocket - WebSocket client library for Python
-Copyright 2021 engn33r
+Copyright 2022 engn33r
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/websocket/_wsdump.py b/websocket/_wsdump.py
index 4d15f41..2ef28d8 100755
--- a/websocket/_wsdump.py
+++ b/websocket/_wsdump.py
@@ -4,7 +4,7 @@
wsdump.py
websocket - WebSocket client library for Python
-Copyright 2021 engn33r
+Copyright 2022 engn33r
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/websocket/tests/test_abnf.py b/websocket/tests/test_abnf.py
index 7f156dc..3521aea 100644
--- a/websocket/tests/test_abnf.py
+++ b/websocket/tests/test_abnf.py
@@ -4,7 +4,7 @@
test_abnf.py
websocket - WebSocket client library for Python
-Copyright 2021 engn33r
+Copyright 2022 engn33r
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/websocket/tests/test_app.py b/websocket/tests/test_app.py
index e6feabb..5a33003 100644
--- a/websocket/tests/test_app.py
+++ b/websocket/tests/test_app.py
@@ -4,7 +4,7 @@
test_app.py
websocket - WebSocket client library for Python
-Copyright 2021 engn33r
+Copyright 2022 engn33r
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/websocket/tests/test_cookiejar.py b/websocket/tests/test_cookiejar.py
index 5bf1fca..93c8ec1 100644
--- a/websocket/tests/test_cookiejar.py
+++ b/websocket/tests/test_cookiejar.py
@@ -6,7 +6,7 @@
test_cookiejar.py
websocket - WebSocket client library for Python
-Copyright 2021 engn33r
+Copyright 2022 engn33r
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/websocket/tests/test_http.py b/websocket/tests/test_http.py
index fda467d..b5b1f13 100644
--- a/websocket/tests/test_http.py
+++ b/websocket/tests/test_http.py
@@ -4,7 +4,7 @@
test_http.py
websocket - WebSocket client library for Python
-Copyright 2021 engn33r
+Copyright 2022 engn33r
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/websocket/tests/test_url.py b/websocket/tests/test_url.py
index ad3a3b1..4d8ae6f 100644
--- a/websocket/tests/test_url.py
+++ b/websocket/tests/test_url.py
@@ -4,7 +4,7 @@
test_url.py
websocket - WebSocket client library for Python
-Copyright 2021 engn33r
+Copyright 2022 engn33r
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/websocket/tests/test_websocket.py b/websocket/tests/test_websocket.py
index 95bf33b..cee7bb9 100644
--- a/websocket/tests/test_websocket.py
+++ b/websocket/tests/test_websocket.py
@@ -8,7 +8,7 @@
test_websocket.py
websocket - WebSocket client library for Python
-Copyright 2021 engn33r
+Copyright 2022 engn33r
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.