Skip to content

Commit

Permalink
Bump to 0.5.1 version
Browse files Browse the repository at this point in the history
This fixes some nasty errors occuring during package publishing
  • Loading branch information
schultyy committed Aug 14, 2023
1 parent ac3ac32 commit c07fc23
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
defmodule Mustache.Mixfile do
use Mix.Project

@version "0.5.0"
@version "0.5.1"
@source_url "https://github.com/schultyy/mustache.ex"

def project do
[
app: :mustache,
version: @version,
elixir: "~> 1.0",
elixir: "~> 1.15",
package: package(),
description: description(),
deps: deps(),
Expand All @@ -21,12 +21,12 @@ defmodule Mustache.Mixfile do
end

def application do
[applications: [:logger]]
[extra_applications: [:logger]]
end

defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end

Expand Down

0 comments on commit c07fc23

Please sign in to comment.