Skip to content

Commit

Permalink
Release v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adriankumpf committed Aug 1, 2022
1 parent 2b3b975 commit b0641c5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## [Unreleased]

## [0.4.0] - 2022-08-01

- Upgrade `mail-parser` to 0.5.0
- Bump `cross` to v0.2.4

## [0.3.4] - 2022-07-04

- Fix the precompilation build for targets using `cross` by adding a `Cross.toml` file with a setting telling to read the `RUSTLER_NIF_VERSION` env var from the host machine
Expand Down Expand Up @@ -35,8 +40,9 @@

## [0.1.0] - 2022-05-17

[unreleased]: https://github.com/kloeckner-i/mail_parser/compare/v0.3.4...HEAD
[0.3.3]: https://github.com/kloeckner-i/mail_parser/releases/tag/v0.3.4
[unreleased]: https://github.com/kloeckner-i/mail_parser/compare/v0.4.0...HEAD
[0.4.0]: https://github.com/kloeckner-i/mail_parser/releases/tag/v0.4.0
[0.3.4]: https://github.com/kloeckner-i/mail_parser/releases/tag/v0.3.4
[0.3.3]: https://github.com/kloeckner-i/mail_parser/releases/tag/v0.3.3
[0.3.2]: https://github.com/kloeckner-i/mail_parser/releases/tag/v0.3.2
[0.3.1]: https://github.com/kloeckner-i/mail_parser/releases/tag/v0.3.1
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The package can be installed by adding `mail_parser` to your list of dependencie
```elixir
def deps do
[
{:mail_parser, "~> 0.3"}
{:mail_parser, "~> 0.4"}
]
end
```
Expand All @@ -28,7 +28,7 @@ You also need to add Rustler to your dependencies when you want to force the com
```elixir
def deps do
[
{:mail_parser, "~> 0.3"}
{:mail_parser, "~> 0.4"}
{:rustler, ">= 0.0.0", optional: true}
]
end
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule MailParser.MixProject do
use Mix.Project

@version "0.4.0-dev"
@version "0.4.0"
@repo_url "https://github.com/kloeckner-i/mail_parser"

def project do
Expand Down

0 comments on commit b0641c5

Please sign in to comment.