Skip to content

Commit 4864913

Browse files
Release 2.10 (#656)
* Release 2.10 * Update __init__.py * Update setup.py
1 parent 7acaf9a commit 4864913

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

CHANGES.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
.. towncrier release notes start
22

3-
2.10.0a0 (2021-11-04)
3+
2.10.0 (2021-12-30)
44
=====================
55

6-
* test
6+
* Typing support
7+
* Add samesite cookie option
8+
* Support aioredis 2
79

810
2.9.0 (2019-11-04)
911
==================

aiohttp_session/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""User sessions for aiohttp.web."""
22

3-
__version__ = "2.10.0a1"
3+
__version__ = "2.10.0"
44

55
import abc
66
import json

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ def read(f):
3939
"Intended Audience :: Developers",
4040
"Programming Language :: Python",
4141
"Programming Language :: Python :: 3",
42-
"Programming Language :: Python :: 3.5",
4342
"Programming Language :: Python :: 3.6",
4443
"Programming Language :: Python :: 3.7",
4544
"Programming Language :: Python :: 3.8",
@@ -54,7 +53,7 @@ def read(f):
5453
url="https://github.com/aio-libs/aiohttp_session/",
5554
license="Apache 2",
5655
packages=["aiohttp_session"],
57-
python_requires=">=3.5",
56+
python_requires=">=3.6",
5857
install_requires=install_requires,
5958
include_package_data=True,
6059
extras_require=extras_require,

0 commit comments

Comments
 (0)