From 891cabf5101224a79dd80b3a4394d8c83677eb56 Mon Sep 17 00:00:00 2001 From: Carlos Derich Date: Tue, 25 Apr 2023 21:52:34 -0400 Subject: [PATCH] chore: bump ver --- examples/with_attachments.py | 4 ++-- resend/version.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/with_attachments.py b/examples/with_attachments.py index 7a0fddc..f821161 100644 --- a/examples/with_attachments.py +++ b/examples/with_attachments.py @@ -12,8 +12,8 @@ ).read() r = client.send_email( - sender="team@recomendo.io", - to="carlosderich@gmail.com", + sender="from@example.io", + to="to@email.com", subject="hi", html="hello, world!", attachments=[{"filename": "invoice.pdf", "content": list(f)}], diff --git a/resend/version.py b/resend/version.py index d3ff564..cc76b66 100644 --- a/resend/version.py +++ b/resend/version.py @@ -1,4 +1,4 @@ -__version__ = "0.1.1" +__version__ = "0.2.0" def get_version():