From 9b29ef64c7e508dd28ebb1453f9f8b3df78b061f Mon Sep 17 00:00:00 2001 From: Christian Giese Date: Thu, 6 Feb 2020 00:24:03 +0100 Subject: [PATCH] release 2.3 --- CHANGES.rst | 3 +++ LICENSE.txt | 2 +- docs/source/conf.py | 6 +++--- pyrad/__init__.py | 4 ++-- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 9f8e813..faf1d29 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,9 @@ Changelog ========= +2.3 - Feb 6, 2020 +------------------ + * Fixed #124 remove reuse_address=True from async server/client * Fixed #121 Unknown attribute key error diff --git a/LICENSE.txt b/LICENSE.txt index e8f95a8..39c063e 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,4 @@ -Copyright 2017-2019 Christian Giese. All rights reserved. +Copyright 2017-2020 Christian Giese. All rights reserved. Copyright 2007-2008 Simplon. All rights reserved. Copyright 2002-2008 Wichert Akkerman. All rights reserved. diff --git a/docs/source/conf.py b/docs/source/conf.py index 84f2c6b..e7498e9 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -49,7 +49,7 @@ # General information about the project. project = u'pyrad' -copyright = u'Copyright 2002-2019 Wichert Akkerman and Christian Giese. All rights reserved.' +copyright = u'Copyright 2002-2020 Wichert Akkerman and Christian Giese. All rights reserved.' author = u'Christian Giese ' # The version info for the project you're documenting, acts as replacement for @@ -57,9 +57,9 @@ # built documents. # # The short X.Y version. -version = u'2.2' +version = u'2.3' # The full version, including alpha/beta/rc tags. -release = u'2.2' +release = u'2.3' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pyrad/__init__.py b/pyrad/__init__.py index 0b45dd1..4955bf0 100644 --- a/pyrad/__init__.py +++ b/pyrad/__init__.py @@ -40,7 +40,7 @@ __author__ = 'Christian Giese ' __url__ = 'http://pyrad.readthedocs.io/en/latest/?badge=latest' -__copyright__ = 'Copyright 2002-2019 Wichert Akkerman and Christian Giese. All rights reserved.' -__version__ = '2.2' +__copyright__ = 'Copyright 2002-2020 Wichert Akkerman and Christian Giese. All rights reserved.' +__version__ = '2.3' __all__ = ['client', 'dictionary', 'packet', 'server', 'tools', 'dictfile']