diff --git a/ChangeLog.txt b/ChangeLog.txt index ecff488e..97af3fe3 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,6 +1,6 @@ # web.py changelog -## 2020-XX-YY 1.0 +## 2020-06-23 0.60 * Python-2 support has been completely dropped. Welcome to Python 3. * Fixed: session store `DiskStore` doesn't return correctly if session diff --git a/web/__init__.py b/web/__init__.py index 1324a7df..53e9af97 100644 --- a/web/__init__.py +++ b/web/__init__.py @@ -24,7 +24,7 @@ from .webapi import * # noqa: F401,F403 from .wsgi import * # noqa: F401,F403 -__version__ = "0.50" +__version__ = "0.60" __author__ = [ "Aaron Swartz ", "Anand Chitipothu ",