Skip to content

Commit 4d4e6bb

Browse files
committed
Implement one-off notifications and attachments
1 parent e45ef80 commit 4d4e6bb

8 files changed

Lines changed: 465 additions & 57 deletions

File tree

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,5 @@ tmp_email/
4747
.tool-versions
4848

4949
# built files
50-
dist/
50+
dist/
51+
notifications.json

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ This package doesn't implement an actual adapter, but it helps you to make an ex
1010
To install VintaSend Celery you need to run the following command:
1111

1212
```shell
13-
pip install vinstasend vintasend-celery
13+
pip install vintasend vintasend-celery
1414
```
1515

1616

1717
## Quick start
1818

19-
To use VintaSend Celery you need to manually register your tasks
19+
To use VintaSend Celery you need to manually register your tasks

RELEASE_NOTES.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Release Notes
2+
3+
## Version 1.0.1 (2025-09-16)
4+
5+
### 🚀 Major Features
6+
7+
* Support to one-off notifications (to non-users)
8+
* Support to attachments
9+
10+
## Version 0.1.4 (Initial Release)
11+
12+
Initial version of VintaSend with core notification functionality.

example_app/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Example app for VintaSend Celery integration

poetry.lock

Lines changed: 16 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "vintasend-celery"
3-
version = "0.1.4"
3+
version = "1.0.1"
44
description = "Celery adapter for VintaSend"
55
authors = ["Hugo bessa <hugo@vinta.com.br>"]
66
license = "MIT"
@@ -12,7 +12,7 @@ include = [
1212

1313
[tool.poetry.dependencies]
1414
python = "<3.14,>=3.10"
15-
vintasend = "0.1.4"
15+
vintasend = "^1.0.1"
1616
celery = "^5.4.0"
1717

1818

0 commit comments

Comments
 (0)