Skip to content

Commit 68ab800

Browse files
Release 0.4.2
1 parent 7726064 commit 68ab800

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 0.4.2 2024-10-24
4+
5+
* Encoded strings that are not valid UTF-8 are now decoded to binary (as-is) rather than raising an error
6+
* Add `charset_handler` option to `Mail.Parsers.RFC2822` to allow custom charset handling https://github.com/DockYard/elixir-mail/pull/178
7+
38
## 0.4.1 2024-10-09
49

510
* Fix quoted-printable encoding of reserved characters https://github.com/DockYard/elixir-mail/pull/176

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ An RFC2822 implementation in Elixir, built for composability.
1212
def deps do
1313
[
1414
# Get from hex
15-
{:mail, "~> 0.4.1"},
15+
{:mail, "~> 0.4"},
1616

1717
# Or use the latest from master
1818
{:mail, github: "DockYard/elixir-mail"}

mix.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ defmodule Mail.Mixfile do
22
use Mix.Project
33

44
@source_url "https://github.com/DockYard/elixir-mail"
5-
@version "0.4.1"
5+
@version "0.4.2"
66

77
def project do
88
[

0 commit comments

Comments
 (0)