From 47acfb0eb73408bb801a5ae5cf578351f57ebf34 Mon Sep 17 00:00:00 2001 From: Antonios Barotsis Date: Tue, 6 Feb 2024 13:02:05 +0100 Subject: [PATCH] prepare 0.3 release --- CHANGELOG.md | 15 +++++++++++++++ Cargo.toml | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 164bb23..35be430 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## [0.3.0] - 2024-02-06 + +### Changed + +- `Mail::new` now accepts a list of `to` addresses and thus supports sending an email to multiple + recipients. + + ```rs + // Before: + let mail = Mail::new("from1", "to1", "subject1", "html1"); + + // Now + let mail = Mail::new("from1", &["to1"], "subject1", "html1"); + ``` + ## [0.2.0] - 2023-07-10 Disabled `reqwest`'s default features and enabled `rustls-tls`. diff --git a/Cargo.toml b/Cargo.toml index f6196be..501c9e3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "resend-rs" description = "A very minimal Resend client for sending emails." -version = "0.2.0" +version = "0.3.0" edition = "2021" repository = "https://github.com/AntoniosBarotsis/resend-rs" license = "GPL-3.0"