Skip to content

Commit f4caeee

Browse files
author
RamezIssac
committed
2.9.3 version
1 parent ed99242 commit f4caeee

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
----------
22
CHANGELOG
33
----------
4+
v 2.9.3 (19 April 2024)
5+
- Fix: Submit event handler in FilteredSelectMultiple removes selected options from tabular_permissions #27 (@DemidovEvg)
6+
- Fix error caused by non-existent model.label #26 (@SteMazzO)
7+
- fix: reminder_perms not work with extra default_permissions #29 (@DemidovEvg)
8+
9+
410
v 2.9.2 (24 July 2023)
511
- Update readme to show how to run tests
612
- update demo project to use Django latest releases

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name='django-tabular-permissions',
12-
version='2.9.2',
12+
version='2.9.3',
1313
packages=['tabular_permissions'],
1414
include_package_data=True,
1515
license='BSD License',
@@ -22,20 +22,20 @@
2222
'Development Status :: 5 - Production/Stable',
2323
'Environment :: Web Environment',
2424
'Framework :: Django',
25-
'Framework :: Django :: 3.2',
2625
'Framework :: Django :: 4.0',
2726
'Framework :: Django :: 4.1',
2827
'Framework :: Django :: 4.2',
28+
'Framework :: Django :: 5.0',
2929
'Intended Audience :: Developers',
3030
'License :: OSI Approved :: BSD License',
3131
'Operating System :: OS Independent',
3232
'Programming Language :: Python',
3333
'Programming Language :: Python :: 3',
34-
'Programming Language :: Python :: 3.7',
3534
'Programming Language :: Python :: 3.8',
3635
'Programming Language :: Python :: 3.9',
3736
'Programming Language :: Python :: 3.10',
3837
'Programming Language :: Python :: 3.11',
38+
'Programming Language :: Python :: 3.12',
3939
'Topic :: Internet :: WWW/HTTP',
4040
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
4141
],

tabular_permissions/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.9.2'
1+
__version__ = '2.9.3'

0 commit comments

Comments
 (0)