From d57ada0d478bd1ca94743ae341f6819ba85ea253 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Piotr=20Ma=C5=9Blanka?= <pmaslanka@smok.co>
Date: Fri, 24 Sep 2021 15:19:03 +0200
Subject: [PATCH] modified the year in client information in handshake.py + ver
 bump

---
 CHANGELOG.md                 | 5 ++---
 coolamqp/__init__.py         | 2 +-
 coolamqp/uplink/handshake.py | 2 +-
 3 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4ac6044..6e1c3e1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,7 +2,6 @@ The changelog is kept as [release notes](https://github.com/smok-serwis/coolamqp
 on GitHub. This file serves to only note what changes
 have been made so far, between releases.
 
-# v1.2.15
+# v1.2.16
 
-* replaced `python-prctl` with `setproctitle` thanks to the latter
-  having less fascist license (BSD vs GNU GPL v3)
+* modified the year in client information in handshake.py
diff --git a/coolamqp/__init__.py b/coolamqp/__init__.py
index 7311807..14a28dc 100644
--- a/coolamqp/__init__.py
+++ b/coolamqp/__init__.py
@@ -1 +1 @@
-__version__ = '1.2.15'
+__version__ = '1.2.16a1'
diff --git a/coolamqp/uplink/handshake.py b/coolamqp/uplink/handshake.py
index 162d555..defb13f 100644
--- a/coolamqp/uplink/handshake.py
+++ b/coolamqp/uplink/handshake.py
@@ -30,7 +30,7 @@ CLIENT_DATA = [
     # these fields to be of type short-string
     (b'product', (b'CoolAMQP', 'S')),
     (b'version', (__version__.encode('utf8'), 'S')),
-    (b'copyright', (b'Copyright (C) 2016-2020 SMOK sp. z o.o.', 'S')),
+    (b'copyright', (b'Copyright (C) 2016-2021 SMOK sp. z o.o.', 'S')),
     (
         b'information', (
             b'Licensed under the MIT License.\nSee https://github.com/smok-serwis/coolamqp for details',
-- 
GitLab