Skip to content

Commit

Permalink
v0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tynanbe committed Nov 16, 2023
1 parent 48902ca commit bb1da12
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.2 - 2023-11-16

- Updated for Elixir v1.15 and Gleam v0.32 compatibility. Make sure to set
`prune_code_paths: false` in your `mix.exs` project config.
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.1"],
archives: [mix_gleam: "~> 0.6.2"],
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.1"
@version "0.6.2"
@deps [
{:gleam_stdlib, "~> 0.32"},
{:gleeunit, "~> 1.0", 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.6.2-dev",
version: "0.6.2",
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

# Gleam compilation config
compilers: [:gleam | Mix.compilers()],
archives: [mix_gleam: "~> 0.6.2-dev"],
archives: [mix_gleam: "~> 0.6.2"],
aliases: ["deps.get": ["deps.get", "gleam.deps.get"]],
erlc_paths: [
"build/dev/erlang/#{@app}/_gleam_artefacts",
Expand Down

0 comments on commit bb1da12

Please sign in to comment.