Skip to content

Commit e6107c8

Browse files
committed
Added CHANGELOG, Bump version 0.3.0
1 parent a3d7992 commit e6107c8

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# 0.3.0
2+
3+
- Added `qsessions.backends.db` session backend.
4+
5+
Thanks @willstott101
6+
7+
# 0.2.1
8+
9+
- Added support for Django 2.2.
10+
11+
Thanks @akx
12+
13+
# 0.2.0
14+
15+
- Added support for Python 3.7, Django 2.1.
16+
- Used pytest for testing.
17+
- Improved session delete performance (reduce number of queries)
18+
- Refactored codes
19+
20+
Thanks @akx, @saeed617
21+
22+
# 0.1.6
23+
24+
- Improve docs
25+
26+
# 0.1.5
27+
28+
- Fixed a bug when User Agent is an empty string
29+
30+
# 0.1.4
31+
32+
- Fixed migrations for `created_at` field.

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
setup(
1818
name='django-qsessions',
19-
version='0.2.1',
19+
version='0.3.0',
2020
description='Extends Django\'s cached_db session backend',
2121
long_description=README,
2222
author='Mohammad Javad Naderi',
@@ -39,6 +39,7 @@
3939
'Framework :: Django :: 1.11',
4040
'Framework :: Django :: 2.0',
4141
'Framework :: Django :: 2.1',
42+
'Framework :: Django :: 2.2',
4243
'Intended Audience :: Developers',
4344
'License :: OSI Approved :: MIT License',
4445
'Operating System :: OS Independent',

0 commit comments

Comments
 (0)