changed CHANGELOG.md
 
@@ -5,7 5,7 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
- ## 1.0.0 - Unreleased
8
## 1.0.0 - 2021-09-25
9
9
10
10
### Added
changed README.md
 
@@ -32,7 32,7 @@ You probably also want to install [`finch`](https://hex.pm/packages/finch),
32
32
if you are using a provider that `Swoosh` talks to via their HTTP API.
33
33
34
34
Or [`:gen_smtp`](https://hex.pm/packages/gen_smtp) if you are working with a provider
35
- that only work through SMTP.
35
that only works through SMTP.
36
36
37
37
See `Swoosh` for more details.
changed hex_metadata.config
 
@@ -41,5 41,5 @@
41
41
{<<"name">>,<<"phoenix">>},
42
42
{<<"optional">>,true},
43
43
{<<"repository">>,<<"hexpm">>},
44
- {<<"requirement">>,<<"~> 1.6.0-rc or ~> 1.6">>}]]}.
45
- {<<"version">>,<<"1.0.0-rc.0">>}.
44
{<<"requirement">>,<<"~> 1.6">>}]]}.
45
{<<"version">>,<<"1.0.0">>}.
changed mix.exs
 
@@ -2,7 2,7 @@ defmodule PhoenixSwoosh.Mixfile do
2
2
use Mix.Project
3
3
4
4
@source_url "https://github.com/swoosh/phoenix_swoosh"
5
- @version "1.0.0-rc.0"
5
@version "1.0.0"
6
6
7
7
def project do
8
8
[
 
@@ -30,7 30,7 @@ defmodule PhoenixSwoosh.Mixfile do
30
30
{:phoenix_html, "~> 3.0", optional: true},
31
31
{:hackney, "~> 1.10", optional: true},
32
32
{:finch, "~> 0.8", optional: true},
33
- {:phoenix, "~> 1.6.0-rc or ~> 1.6", optional: true},
33
{:phoenix, "~> 1.6", optional: true},
34
34
{:credo, "~> 1.0", only: [:dev, :test]},
35
35
{:ex_doc, ">= 0.0.0", only: :docs, runtime: false}
36
36
]