diff --git a/CHANGELOG.md b/CHANGELOG.md index af4e3d8..e59f2ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## v0.6.1 - 2022-12-04 - Updated for Gleam v0.25 compatibility. - Fixed a bug where compiling on Windows would fail for projects with a `priv` diff --git a/README.md b/README.md index 390f380..47275ad 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ compiler and Gleam dependencies: [ app: @app, # ... - archives: [mix_gleam: "~> 0.6.0"], + archives: [mix_gleam: "~> 0.6.1"], compilers: [:gleam | Mix.compilers()], aliases: [ # Or add this to your aliases function diff --git a/lib/mix_gleam/config.ex b/lib/mix_gleam/config.ex index e6e336e..59ca13d 100644 --- a/lib/mix_gleam/config.ex +++ b/lib/mix_gleam/config.ex @@ -1,5 +1,5 @@ defmodule MixGleam.Config do - @version "0.6.0" + @version "0.6.1" @deps [ {:gleam_stdlib, "~> 0.18"}, {:gleeunit, "~> 0.5", only: [:dev, :test], runtime: false} diff --git a/mix.exs b/mix.exs index 7601440..fad4655 100644 --- a/mix.exs +++ b/mix.exs @@ -4,14 +4,14 @@ defmodule MixGleam.MixProject do def project do [ app: :mix_gleam, - version: "0.6.1-dev", + version: "0.6.1", elixir: "~> 1.9", start_permanent: Mix.env() == :prod, name: "mix_gleam", description: "Compile Gleam code with mix", deps: deps(), package: [ - maintainers: ["Louis Pilfold"], + maintainers: ["Louis Pilfold", "Tynan Beatty"], licenses: ["Apache-2.0"], links: %{"GitHub" => "https://github.com/gleam-lang/mix_gleam"} ] diff --git a/test_projects/basic_project/mix.exs b/test_projects/basic_project/mix.exs index 55b20dc..3e4cf47 100644 --- a/test_projects/basic_project/mix.exs +++ b/test_projects/basic_project/mix.exs @@ -14,7 +14,7 @@ defmodule BasicProject.MixProject do # Gleam compilation config compilers: [:gleam | Mix.compilers()], - archives: [mix_gleam: "~> 0.6.0"], + archives: [mix_gleam: "~> 0.6.1"], aliases: ["deps.get": ["deps.get", "gleam.deps.get"]], erlc_paths: [ "build/dev/erlang/#{@app}/_gleam_artefacts",