Skip to content

Commit 12a13f5

Browse files
committed
Version bump and changelog for 1.14.0
1 parent 323c3cb commit 12a13f5

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

HISTORY.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
Changelog
44
=========
55

6+
1.14.0 (2022-08-24)
7+
*******************
8+
9+
- Drop official support for python 3.6 and django < 3.2. Previous versions may continue to work but aren't tested anymore
10+
- OFficial support for Django 4.1 and Python 3.10
11+
- Fix #281: ensure preference_updated signal is trigerred when updating preference through admin UI
12+
- Include signal in example project (#281)
13+
- Fixed broken documentation build
14+
615
1.13.0 (2022-06-12)
716
*******************
817

dynamic_preferences/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "1.13.0"
1+
__version__ = "1.14.0"
22
default_app_config = "dynamic_preferences.apps.DynamicPreferencesConfig"

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
packages=["dynamic_preferences"],
3434
include_package_data=True,
3535
install_requires=[
36-
"django>=2.2",
36+
"django>=3.2",
3737
"six",
3838
"persisting_theory==1.0",
3939
],
@@ -46,9 +46,6 @@
4646
"Intended Audience :: Developers",
4747
"License :: OSI Approved :: BSD License",
4848
"Natural Language :: English",
49-
"Programming Language :: Python :: 2",
50-
"Programming Language :: Python :: 2.7",
5149
"Programming Language :: Python :: 3",
52-
"Programming Language :: Python :: 3.4",
5350
],
5451
)

0 commit comments

Comments
 (0)