Skip to content

Commit

Permalink
Roll version
Browse files Browse the repository at this point in the history
  • Loading branch information
danschultzer committed Aug 22, 2019
1 parent 755bde5 commit 6434555
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## v0.3.8 (TBA)
## v0.3.8 (2019-08-22)

* Removed HTTPoison and use `:httpc` instead
* Fixed bug where HTML with no style tags resulted in all existing inline styles being removed
Expand Down
23 changes: 15 additions & 8 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Premailex.Mixfile do
use Mix.Project

@version "0.3.7"
@version "0.3.8"

def project do
[
Expand All @@ -17,13 +17,7 @@ defmodule Premailex.Mixfile do

# Docs
name: "Premailex",
docs: [
source_ref: "v#{@version}",
main: "Premailex",
canonical: "http://hexdocs.pm/premailex",
source_url: "https://github.com/danschultzer/premailex",
extras: ["README.md"]
],
docs: docs(),

xref: [exclude: [Meeseeks, Meeseeks.Document, Meeseeks.Selector.CSS, :certifi, :ssl_verify_hostname]]
]
Expand Down Expand Up @@ -56,4 +50,17 @@ defmodule Premailex.Mixfile do
files: ~w(lib LICENSE mix.exs README.md)
]
end

defp docs do
[
source_ref: "v#{@version}",
main: "README",
canonical: "http://hexdocs.pm/premailex",
source_url: "https://github.com/danschultzer/premailex",
extras: [
"README.md",
"CHANGELOG.md"
]
]
end
end

0 comments on commit 6434555

Please sign in to comment.