Skip to content

Commit eae8945

Browse files
authored
Release version 0.62 (webpy#692)
1 parent 0012bd2 commit eae8945

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

ChangeLog.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# web.py changelog
22

3-
## 2020-XX-XX 0.62
3+
## 2020-11-09 0.62
44

5+
* Fixed: application.load() assumes ctx.path will be a latin1 string #687
56
* Fixed: can not reset session data to same value as initialized. #683
67
* Fixed: can not set session expire time. #655
78
* Fixed: not export session store `MemoryStore`.

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ Visit http://webpy.org/ for more information.
55
[![build status](https://secure.travis-ci.org/webpy/webpy.png?branch=master)](https://travis-ci.org/webpy/webpy)
66
[![Codecov Test Coverage](https://codecov.io/gh/webpy/webpy/branch/master/graphs/badge.svg?style=flat)](https://codecov.io/gh/webpy/webpy)
77

8-
The latest stable release `0.61` only supports Python >= 3.6.
8+
The latest stable release `0.62` only supports Python >= 3.5.
99
To install it, please run:
1010
```
1111
# For Python 3
12-
python3 -m pip install web.py==0.61
12+
python3 -m pip install web.py==0.62
1313
```
1414

1515
If you are still using Python 2.7, then please use web.py version 0.51
@@ -22,9 +22,10 @@ python2 -m pip install web.py==0.51
2222
You can also download it from [GitHub Releases](https://github.com/webpy/webpy/releases)
2323
page, then install it manually:
2424
```
25-
unzip webpy-0.61.zip
26-
cd webpy-0.61/
25+
unzip webpy-0.62.zip
26+
cd webpy-0.62/
2727
python3 setup.py install
2828
```
2929

3030
Note: `0.5x` (e.g. 0.50, 0.51) are our last releases which support Python 2.
31+
Note: `0.6x` (e.g. 0.60, 0.61, 0.62) are our last releases which support Python 3.5.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
long_description_content_type="text/markdown",
2828
license="Public domain",
2929
platforms=["any"],
30-
python_requires=">=3.6",
30+
python_requires=">=3.5",
3131
classifiers=[
3232
"License :: Public Domain",
3333
"Programming Language :: Python",

web/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
from .webapi import * # noqa: F401,F403
2525
from .wsgi import * # noqa: F401,F403
2626

27-
__version__ = "0.61"
27+
__version__ = "0.62"
2828
__author__ = [
2929
"Aaron Swartz <me@aaronsw.com>",
3030
"Anand Chitipothu <anandology@gmail.com>",

0 commit comments

Comments
 (0)