Skip to content

Commit

Permalink
prepare 0.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoniosBarotsis committed Feb 6, 2024
1 parent 3aeaeab commit 47acfb0
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<!-- ## [Unreleased] -->

## [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`.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 47acfb0

Please sign in to comment.