Skip to content

Commit

Permalink
Release 1.4.8
Browse files Browse the repository at this point in the history
  • Loading branch information
chrismccord committed Jun 12, 2019
1 parent a675ce3 commit c5d7238
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ Note the websocket/longpoll configuration given to socket/3 will only apply afte

The old APIs for building transports are also deprecated. The good news is: adapting an existing transport to the new API is a less error prone process where you should mostly remove code.

## 1.4.8 (2019-06-12)

### JavaScript client bug fixes
* Fix npm package build

## 1.4.7 (2019-06-11)

### Enhancements
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.4.7",
"version": "1.4.8",
"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
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Once we have Elixir and Erlang, we are ready to install the Phoenix Mix archive.
Here's the command to install the Phoenix archive:

```console
$ mix archive.install hex phx_new 1.4.7
$ mix archive.install hex phx_new 1.4.8
```

### Plug, Cowboy, and Ecto
Expand Down
2 changes: 1 addition & 1 deletion installer/README.md
Original file line number Diff line number Diff line change
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.4.7
$ mix archive.install hex phx_new 1.4.8

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

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

Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Phoenix.MixProject do
use Mix.Project

@version "1.4.7"
@version "1.4.8"

def project do
[
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.4.7",
"version": "1.4.8",
"description": "The official JavaScript client for the Phoenix web framework.",
"license": "MIT",
"main": "./priv/static/phoenix.js",
Expand Down

0 comments on commit c5d7238

Please sign in to comment.