Skip to content

Commit

Permalink
Release 1.4.14
Browse files Browse the repository at this point in the history
  • Loading branch information
chrismccord committed Feb 21, 2020
1 parent a1d45cb commit e173b78
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -24,7 +24,7 @@ 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.14-dev
## 1.4.14 (2020-02-20)

### Deprecations
* [Token] The `encrypt/5` and `decrypt/5` API added in 1.4.11 accepted more parameters than necessary. The extra parameter has been deprecated
Expand All @@ -33,6 +33,7 @@ The old APIs for building transports are also deprecated. The good news is: adap

### Enhancements
* [Router] support metadata on `route_info`
* [Router] emit telemetry events on router dispatch failure, using `[:phoenix, :router_dispatch, :failure]`

## 1.4.12 (2020-01-22)

Expand Down
2 changes: 1 addition & 1 deletion assets/package.json
@@ -1,6 +1,6 @@
{
"name": "phoenix",
"version": "1.4.13",
"version": "1.4.14",
"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 @@ -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.13
$ mix archive.install hex phx_new 1.4.14
```

### Plug, Cowboy, and Ecto
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.4.13
$ mix archive.install hex phx_new 1.4.14

To build and install it locally,
ensure any previous archive versions are removed:
Expand Down
2 changes: 1 addition & 1 deletion installer/lib/phx_new/generator.ex
Expand Up @@ -4,7 +4,7 @@ defmodule Phx.New.Generator do
alias Phx.New.{Project}

@phoenix Path.expand("../..", __DIR__)
@phoenix_version Version.parse!("1.4.13")
@phoenix_version Version.parse!("1.4.14")

@callback prepare_project(Project.t) :: Project.t
@callback generate(Project.t) :: Project.t
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.4.13"
@version "1.4.14"
@github_path "phoenixframework/phoenix"
@url "https://github.com/#{@github_path}"

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

@version "1.4.13"
@version "1.4.14"

def project do
[
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "phoenix",
"version": "1.4.13",
"version": "1.4.14",
"description": "The official JavaScript client for the Phoenix web framework.",
"license": "MIT",
"main": "./priv/static/phoenix.js",
Expand Down

0 comments on commit e173b78

Please sign in to comment.