Skip to content

Commit

Permalink
Update CHANGELOG and README
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewtimberlake committed Aug 1, 2023
1 parent 8d6bd7e commit aec0ee8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
# Changelog

## Master
## 0.3.0 2023-08-01

* Add DateTime and time zone support to date parsing/rendering
* Fix compile warnings
* Add Mail.parse/2 with default RFC2822 parser
* Use a binary accumulator in QuotedPrintable encoder to reduce memory https://github.com/DockYard/elixir-mail/pull/145
* Handle strings that appear to be quoted printable but are not https://github.com/DockYard/elixir-mail/pull/141
* Provide default charset when no charset specified https://github.com/DockYard/elixir-mail/pull/144
* Fix handling obsolete timezone (UT) in obsolete date/time format https://github.com/DockYard/elixir-mail/pull/143
* Split encoded words on headers https://github.com/DockYard/elixir-mail/pull/134

## 0.2.3 2021-06-28

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ message =
After you have built your message you can render it:

```elixir
rendered_message = Mail.Renderers.RFC2822.render(message)
rendered_message = Mail.render(message)
```

## Parsing
Expand All @@ -60,7 +60,7 @@ If you'd like to parse an already rendered message back into
a data model:

```elixir
Mail.Parsers.RFC2822.parse(rendered_message)
%Mail.Message{} = message = Mail.parse(rendered_message)
```

[There are more functions described in the docs](https://hexdocs.pm/mail/Mail.html)
Expand Down

0 comments on commit aec0ee8

Please sign in to comment.