File tree 4 files changed +23
-12
lines changed
4 files changed +23
-12
lines changed Original file line number Diff line number Diff line change @@ -23,11 +23,16 @@ jobs:
23
23
- ' 3.2' # LTS April 2024
24
24
- ' 4.2' # LTS April 2026
25
25
- ' 5.0' # April 2025
26
+ - ' 5.1b1' # December 2025
26
27
exclude :
27
28
- python-version : ' 3.8'
28
29
django-version : ' 5.0'
29
30
- python-version : ' 3.9'
30
31
django-version : ' 5.0'
32
+ - python-version : ' 3.8'
33
+ django-version : ' 5.1b1'
34
+ - python-version : ' 3.9'
35
+ django-version : ' 5.1b1'
31
36
- python-version : ' 3.11'
32
37
django-version : ' 3.2'
33
38
- python-version : ' 3.12'
Original file line number Diff line number Diff line change 22
22
from django .core .exceptions import ImproperlyConfigured
23
23
from django .utils .functional import Promise
24
24
25
- VERSION = (1 , 1 , 1 )
25
+ VERSION = (1 , 1 , 2 )
26
26
27
27
__title__ = "Django Routines"
28
28
__version__ = "." .join (str (i ) for i in VERSION )
Original file line number Diff line number Diff line change 2
2
Change Log
3
3
==========
4
4
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
+ ====================
7
12
8
13
* `Allow hyphens (-) in switches. <https://github.com/bckohan/django-routines/issues/17 >`_
9
14
10
- v1.1.0
11
- ======
15
+ v1.1.0 (10-JUN-2024)
16
+ ====================
12
17
13
18
* `Invalidate importlib caches if command is makemigrations. <https://github.com/bckohan/django-routines/issues/13 >`_
14
19
* `Rationale for why settings is a good place to put routines. <https://github.com/bckohan/django-routines/issues/8 >`_
15
20
* `Command type for system commands (i.e. non-management commands) to be run as subprocesses <https://github.com/bckohan/django-routines/issues/7 >`_
16
21
* `Option to run management commands as subprocesses instead of in the same process space. <https://github.com/bckohan/django-routines/issues/6 >`_
17
22
18
- v1.0.2
19
- ======
23
+ v1.0.2 (05-JUN-2024)
24
+ ====================
20
25
21
26
* `Update import deprecation for django-typer 2.1+ <https://github.com/bckohan/django-routines/issues/4 >`_
22
27
23
- v1.0.1
24
- ======
28
+ v1.0.1 (05-JUN-2024)
29
+ ====================
25
30
26
31
* `Help example images dont have the correct usage line. <https://github.com/bckohan/django-routines/issues/3 >`_
27
32
28
33
29
- v1.0.0
30
- ======
34
+ v1.0.0 (05-JUN-2024)
35
+ ====================
31
36
32
37
* Initial production/stable release.
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " django-routines"
3
- version = " 1.1.1 "
3
+ version = " 1.1.2 "
4
4
description = " Define named groups of management commands in Django settings files for batched execution."
5
5
authors = [" Brian Kohan <bckohan@gmail.com>" ]
6
6
license = " MIT"
@@ -19,6 +19,7 @@ classifiers = [
19
19
" Framework :: Django :: 4.1" ,
20
20
" Framework :: Django :: 4.2" ,
21
21
" Framework :: Django :: 5.0" ,
22
+ " Framework :: Django :: 5.1" ,
22
23
" Intended Audience :: Developers" ,
23
24
" License :: OSI Approved :: MIT License" ,
24
25
" Natural Language :: English" ,
You can’t perform that action at this time.
0 commit comments