Skip to content

Commit

Permalink
v0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tynanbe committed Dec 5, 2022
1 parent 04d0d7a commit 7bf56b8
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 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.1 - 2022-12-04

- Updated for Gleam v0.25 compatibility.
- Fixed a bug where compiling on Windows would fail for projects with a `priv`
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
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.6.0"
@version "0.6.1"
@deps [
{:gleam_stdlib, "~> 0.18"},
{:gleeunit, "~> 0.5", only: [:dev, :test], runtime: false}
Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
]
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

# 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",
Expand Down

0 comments on commit 7bf56b8

Please sign in to comment.