Skip to content

Commit ff67f37

Browse files
committed
Clarified package tagline
1 parent 74e8212 commit ff67f37

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
A simple message queue for commands and events (CQRS) for Django.
1+
A simple and synchronous message queue for commands and events for Django.

CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
**0.3.3** (2025-04-03)
4+
* Clarified package tagline
5+
36
**0.3.2** (2025-04-03)
47
* Maintenance updates via ambient-package-update
58

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![Coding Style](https://img.shields.io/badge/code%20style-Ruff-000000.svg)](https://github.com/astral-sh/ruff)
66
[![Documentation Status](https://readthedocs.org/projects/django-queuebie/badge/?version=latest)](https://django-queuebie.readthedocs.io/en/latest/?badge=latest)
77

8-
A simple message queue for commands and events (CQRS) for Django.
8+
A simple and synchronous message queue for commands and events for Django.
99

1010
* [PyPI](https://pypi.org/project/django-queuebie/)
1111
* [GitHub](https://github.com/ambient-innovation/django-queuebie)

queuebie/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
"""Simple message queue for commands and events (CQRS)"""
1+
"""A simple and synchronous message queue for commands and events for Django"""
22

3-
__version__ = "0.3.2"
3+
__version__ = "0.3.3"
44

55
from queuebie.registry import MessageRegistry
66

7-
# Create global message registry
7+
# Initialise global message registry
88
message_registry = MessageRegistry()

0 commit comments

Comments
 (0)