Skip to content

Commit

Permalink
v0.6.0 (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
tynanbe authored Jun 16, 2022
1 parent ddbf2b8 commit d149657
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/mix_gleam/config.ex
Original file line number Diff line number Diff line change
@@ -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},
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion test_projects/basic_project/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit d149657

Please sign in to comment.