diff --git a/CHANGES b/CHANGES index 0bf95ce9..44e439cb 100644 --- a/CHANGES +++ b/CHANGES @@ -1,9 +1,12 @@ -2.0.6 - - bugfix: invalid values for idle timeout in profile.py would cause an error +2.0.7 + - bugfix: ValueError in profile.py for setting bad timeout value - bugfix: ASCII colly diz with extended chars was causing an error + - bugfix: KeyError in hackernews.py - deprecation: the "extras" subfolder of default script has been moved to https://github.com/x84-extras - - bugfix: KeyError in hackernews.py + + (version 2.0.6 was not released to pypi) + 2.0.5 - bugfix: UnicodeDecodeError when quoting some messages - bugfix: '__uploads__' folder not hidden by sftp as intended diff --git a/docs/conf.py b/docs/conf.py index 257337da..a3fb8513 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,9 +48,9 @@ # built documents. # # The short X.Y version. -version = '2.0.6' +version = '2.0.7' # The full version, including alpha/beta/rc tags. -release = '2.0.6' +release = '2.0.7' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index fa47dc64..b77a4736 100755 --- a/setup.py +++ b/setup.py @@ -82,7 +82,7 @@ def run(self): setup(name='x84', - version='2.0.6', + version='2.0.7', description=("Framework for Telnet and SSH BBS or MUD server " "development with example default bbs board"), long_description=open(os.path.join(HERE, README)).read(),