File tree Expand file tree Collapse file tree 4 files changed +23
-12
lines changed
Expand file tree Collapse file tree 4 files changed +23
-12
lines changed Original file line number Diff line number Diff line change @@ -23,11 +23,16 @@ jobs:
2323 - ' 3.2' # LTS April 2024
2424 - ' 4.2' # LTS April 2026
2525 - ' 5.0' # April 2025
26+ - ' 5.1b1' # December 2025
2627 exclude :
2728 - python-version : ' 3.8'
2829 django-version : ' 5.0'
2930 - python-version : ' 3.9'
3031 django-version : ' 5.0'
32+ - python-version : ' 3.8'
33+ django-version : ' 5.1b1'
34+ - python-version : ' 3.9'
35+ django-version : ' 5.1b1'
3136 - python-version : ' 3.11'
3237 django-version : ' 3.2'
3338 - python-version : ' 3.12'
Original file line number Diff line number Diff line change 2222from django .core .exceptions import ImproperlyConfigured
2323from django .utils .functional import Promise
2424
25- VERSION = (1 , 1 , 1 )
25+ VERSION = (1 , 1 , 2 )
2626
2727__title__ = "Django Routines"
2828__version__ = "." .join (str (i ) for i in VERSION )
Original file line number Diff line number Diff line change 22Change Log
33==========
44
5- v1.1.1
6- ======
5+ v1.1.2 (15-JUL-2024)
6+ ====================
7+
8+ * `Support Django 5.1 <https://github.com/bckohan/django-routines/issues/19 >`_
9+
10+ v1.1.1 (15-JUL-2024)
11+ ====================
712
813* `Allow hyphens (-) in switches. <https://github.com/bckohan/django-routines/issues/17 >`_
914
10- v1.1.0
11- ======
15+ v1.1.0 (10-JUN-2024)
16+ ====================
1217
1318* `Invalidate importlib caches if command is makemigrations. <https://github.com/bckohan/django-routines/issues/13 >`_
1419* `Rationale for why settings is a good place to put routines. <https://github.com/bckohan/django-routines/issues/8 >`_
1520* `Command type for system commands (i.e. non-management commands) to be run as subprocesses <https://github.com/bckohan/django-routines/issues/7 >`_
1621* `Option to run management commands as subprocesses instead of in the same process space. <https://github.com/bckohan/django-routines/issues/6 >`_
1722
18- v1.0.2
19- ======
23+ v1.0.2 (05-JUN-2024)
24+ ====================
2025
2126* `Update import deprecation for django-typer 2.1+ <https://github.com/bckohan/django-routines/issues/4 >`_
2227
23- v1.0.1
24- ======
28+ v1.0.1 (05-JUN-2024)
29+ ====================
2530
2631* `Help example images dont have the correct usage line. <https://github.com/bckohan/django-routines/issues/3 >`_
2732
2833
29- v1.0.0
30- ======
34+ v1.0.0 (05-JUN-2024)
35+ ====================
3136
3237* Initial production/stable release.
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " django-routines"
3- version = " 1.1.1 "
3+ version = " 1.1.2 "
44description = " Define named groups of management commands in Django settings files for batched execution."
55authors = [" Brian Kohan <bckohan@gmail.com>" ]
66license = " MIT"
@@ -19,6 +19,7 @@ classifiers = [
1919 " Framework :: Django :: 4.1" ,
2020 " Framework :: Django :: 4.2" ,
2121 " Framework :: Django :: 5.0" ,
22+ " Framework :: Django :: 5.1" ,
2223 " Intended Audience :: Developers" ,
2324 " License :: OSI Approved :: MIT License" ,
2425 " Natural Language :: English" ,
You can’t perform that action at this time.
0 commit comments