Skip to content

Commit

Permalink
Release 1.5.13
Browse files Browse the repository at this point in the history
  • Loading branch information
chrismccord committed Sep 22, 2021
1 parent f2bd7fd commit 001fb43
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 9 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Expand Up @@ -12,6 +12,14 @@ Then once you start an application, you will get a warning about the `:pubsub` k

Phoenix built-in guides have been restructured and revamped, providing a better navigation structure and more content.

### 1.5.13 (2021-09-22)

### Bug Fixes
* [Router] Do not generate conflicting helpers in router

### JavaScript Client Bug Fixes
* Fix messages for duplicate topic being dispatched to old channels

### 1.5.12 (2021-08-24)

### Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions assets/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion assets/package.json
@@ -1,6 +1,6 @@
{
"name": "phoenix",
"version": "1.5.12",
"version": "1.5.13",
"description": "The official JavaScript client for the Phoenix web framework.",
"license": "MIT",
"main": "./priv/static/phoenix.js",
Expand Down
2 changes: 1 addition & 1 deletion guides/introduction/installation.md
Expand Up @@ -43,7 +43,7 @@ Elixir 1.6.3
Once we have Elixir and Erlang, we are ready to install the Phoenix application generator:

```console
$ mix archive.install hex phx_new 1.5.12
$ mix archive.install hex phx_new 1.5.13
```

We will use this generator to generate new applications in the next guide, called [Up and Running](up_and_running.html).
Expand Down
2 changes: 1 addition & 1 deletion installer/README.md
Expand Up @@ -4,7 +4,7 @@ Provides `phx.new` installer as an archive.

To install from hex, run:

$ mix archive.install hex phx_new 1.5.12
$ mix archive.install hex phx_new 1.5.13

To build and install it locally,
ensure any previous archive versions are removed:
Expand Down
2 changes: 1 addition & 1 deletion installer/mix.exs
@@ -1,7 +1,7 @@
defmodule Phx.New.MixProject do
use Mix.Project

@version "1.5.12"
@version "1.5.13"
@github_path "phoenixframework/phoenix"
@url "https://github.com/#{@github_path}"

Expand Down
2 changes: 1 addition & 1 deletion installer/templates/phx_static/phoenix.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion mix.exs
@@ -1,7 +1,7 @@
defmodule Phoenix.MixProject do
use Mix.Project

@version "1.5.12"
@version "1.5.13"

# If the elixir requirement is updated, we need to make the installer
# use at least the minimum requirement used here. Although often the
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "phoenix",
"version": "1.5.12",
"version": "1.5.13",
"description": "The official JavaScript client for the Phoenix web framework.",
"license": "MIT",
"main": "./priv/static/phoenix.js",
Expand Down

0 comments on commit 001fb43

Please sign in to comment.