Skip to content

Commit b541438

Browse files
authored
Merge pull request #20 from bckohan/v1.1.x
V1.1.x
2 parents 85cd208 + ff5777c commit b541438

File tree

4 files changed

+23
-12
lines changed

4 files changed

+23
-12
lines changed

.github/workflows/test.yml

+5
Original file line numberDiff line numberDiff 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'

django_routines/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
from django.core.exceptions import ImproperlyConfigured
2323
from 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)

doc/source/changelog.rst

+15-10
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,36 @@
22
Change 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.

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "django-routines"
3-
version = "1.1.1"
3+
version = "1.1.2"
44
description = "Define named groups of management commands in Django settings files for batched execution."
55
authors = ["Brian Kohan <bckohan@gmail.com>"]
66
license = "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",

0 commit comments

Comments
 (0)