# HG changeset patch # User Cameron Simpson # Date 1736549822 -39600 # Sat Jan 11 09:57:02 2025 +1100 # Node ID ceea15e787ee0dcd5fc9e8b16399382c2a087aaa # Parent f8d2826b051b638bae974a72cd5c8e93d336e48d Release information for cs.djutils-20250111. Summary: New model_batches_qs() generator yielding QuerySets for batches of a Model. diff --git a/lib/python/cs/djutils.py b/lib/python/cs/djutils.py --- a/lib/python/cs/djutils.py +++ b/lib/python/cs/djutils.py @@ -23,7 +23,7 @@ from cs.gimmicks import warning from cs.lex import cutprefix, stripped_dedent -__version__ = '20241222.3-post' +__version__ = '20250111' DISTINFO = { 'keywords': ["python3"], diff --git a/release/cs.djutils-20250111/CHANGES.txt b/release/cs.djutils-20250111/CHANGES.txt new file mode 100644 --- /dev/null +++ b/release/cs.djutils-20250111/CHANGES.txt @@ -0,0 +1,2 @@ +lib/python/cs/djutils.py: cs.djutils: new model_batches_qs() for generating QuerySets for batches of a Model +lib/python/cs/djutils.py: merge cs.djutils model_batches_qs() diff --git a/release/cs.djutils-20250111/SUMMARY.txt b/release/cs.djutils-20250111/SUMMARY.txt new file mode 100644 --- /dev/null +++ b/release/cs.djutils-20250111/SUMMARY.txt @@ -0,0 +1,1 @@ +New model_batches_qs() generator yielding QuerySets for batches of a Model.