From d149657986f845c951bbb95f4bedee4569bd3fe7 Mon Sep 17 00:00:00 2001 From: Tynan Beatty <38031130+tynanbe@users.noreply.github.com> Date: Thu, 16 Jun 2022 06:48:22 -0500 Subject: [PATCH] v0.6.0 (#22) --- CHANGELOG.md | 2 +- README.md | 2 +- lib/mix_gleam/config.ex | 2 +- mix.exs | 2 +- test_projects/basic_project/mix.exs | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 80157d2..b3fb3fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## v0.6.0 - Unreleased - `mix gleam.compile` task is renamed to `mix compile.gleam` for compatibility with the `:compilers` Mix.Project option. diff --git a/README.md b/README.md index 447aaeb..e731094 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ compiler and Gleam dependencies: [ app: @app, # ... - archives: [mix_gleam: "~> 0.4.0"], + archives: [mix_gleam: "~> 0.6.0"], compilers: [:gleam | Mix.compilers()], aliases: [ # or add this alias to your aliases() function diff --git a/lib/mix_gleam/config.ex b/lib/mix_gleam/config.ex index 778716f..519fe22 100644 --- a/lib/mix_gleam/config.ex +++ b/lib/mix_gleam/config.ex @@ -1,5 +1,5 @@ defmodule MixGleam.Config do - @version "0.4.0" + @version "0.6.0" @deps [ {:gleam_stdlib, "~> 0.18"}, {:gleeunit, "~> 0.5", only: [:dev, :test], runtime: false}, diff --git a/mix.exs b/mix.exs index a7eeb24..0f9c67f 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule MixGleam.MixProject do def project do [ app: :mix_gleam, - version: "0.5.0", + version: "0.6.0", elixir: "~> 1.9", start_permanent: Mix.env() == :prod, name: "mix_gleam", diff --git a/test_projects/basic_project/mix.exs b/test_projects/basic_project/mix.exs index eeb99bf..36e706a 100644 --- a/test_projects/basic_project/mix.exs +++ b/test_projects/basic_project/mix.exs @@ -14,7 +14,7 @@ defmodule BasicProject.MixProject do # New items added for Gleam compilation compilers: [:gleam | Mix.compilers()], - archives: [mix_gleam: "~> 0.5.0"], + archives: [mix_gleam: "~> 0.6.0"], aliases: ["deps.get": ["deps.get", "gleam.deps.get"]], erlc_paths: ["build/dev/erlang/#{@app}/build"], erlc_include_path: "build/dev/erlang/#{@app}/include"