Skip to content

Commit

Permalink
Release 1.6.9
Browse files Browse the repository at this point in the history
  • Loading branch information
chrismccord committed May 16, 2022
1 parent 4333da8 commit a2e4b1a
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ See the [upgrade guide](https://gist.github.com/chrismccord/2ab350f154235ad4a4d0

Phoenix v1.6 requires Elixir v1.9+.

## 1.6.9 (2022-05-16)

### Bug Fixes
* [phx.gen.release] Fix generated .dockerignore comment

## 1.6.8 (2022-05-06)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion assets/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "phoenix",
"version": "1.6.8",
"version": "1.6.9",
"description": "The official JavaScript client for the Phoenix web framework.",
"license": "MIT",
"main": "./assets/js/phoenix/index.js",
Expand Down
2 changes: 1 addition & 1 deletion installer/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ end
defmodule Phx.New.MixProject do
use Mix.Project

@version "1.6.8"
@version "1.6.9"
@scm_url "https://github.com/phoenixframework/phoenix"

# If the elixir requirement is updated, we need to update:
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ defmodule Phoenix.MixProject do
end
end

@version "1.6.8"
@version "1.6.9"
@scm_url "https://github.com/phoenixframework/phoenix"

# If the elixir requirement is updated, we need to make the installer
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "phoenix",
"version": "1.6.8",
"version": "1.6.9",
"description": "The official JavaScript client for the Phoenix web framework.",
"license": "MIT",
"module": "./priv/static/phoenix.mjs",
Expand Down
2 changes: 1 addition & 1 deletion test/mix/tasks/phx.gen.auth_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ defmodule Mix.Tasks.Phx.Gen.AuthTest do
)

assert_file "mix.exs", fn file ->
assert file =~ ~s|{:argon2_elixir, "~> 2.0"}|
assert file =~ ~s|{:argon2_elixir, "~> 3.0"}|
end

assert_file "config/test.exs", fn file ->
Expand Down

0 comments on commit a2e4b1a

Please sign in to comment.