diff --git a/CHANGES b/CHANGES index 83e0248e..49dc6b37 100644 --- a/CHANGES +++ b/CHANGES @@ -1,7 +1,6 @@ 2.0.4 - - bugfix: unicode wasn't being used when messages were quoted - - bugfix: sftp server was not properly comparing the current path against the - __uploads__ directory + - bugfix: UnicodeDecodeError when quoting some messages + - bugfix: '__uploads__' folder not hidden by sftp as intended - bugfix: sesame did not honor want_cols/rows when the given terminal size was already of its exact dimensions. diff --git a/docs/conf.py b/docs/conf.py index 50bdf8da..1ae92c03 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,9 +48,9 @@ # built documents. # # The short X.Y version. -version = '2.0.3' +version = '2.0.4' # The full version, including alpha/beta/rc tags. -release = '2.0.3' +release = '2.0.4' # 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 2afc5c4c..a4c0fa76 100755 --- a/setup.py +++ b/setup.py @@ -82,7 +82,7 @@ def run(self): setup(name='x84', - version='2.0.3', + version='2.0.4', 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(),