Skip to content

Commit

Permalink
Release 0.17.1
Browse files Browse the repository at this point in the history
  • Loading branch information
chrismccord committed Aug 26, 2015
1 parent fe15308 commit aa6d7a8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@

## 1.0.0-dev

## v0.17.1 (2015-8-26)

* Enhancements
* [ChannelTest] Add `connect/2` helper for test UserSocket handlers
* [Endpoint] Expose `struct_url/0` in the endpoint that returns the URL as struct for further manipulation
* [Router] Allow `URI` structs to be given to generated `url/1` and `path/2` helpers

* Bug fixes
* [Endpoint] Pass port configuration when configuring force_ssl
* [Mix] By default include all attributes in generated JSON views
* [Endpoint] Pass port configuration when configuring force_ssl
* [Mix] By default include all attributes in generated JSON views
* [Router] Fix `pipe_through` not respecting halting when piping through mulitple pipelines

## v0.17.0 (2015-8-19)
Expand Down
2 changes: 1 addition & 1 deletion installer/lib/phoenix_new.ex
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ defmodule Mix.Tasks.Phoenix.New do
:crypto.strong_rand_bytes(length) |> Base.encode64 |> binary_part(0, length)
end

defp phoenix_dep("deps/phoenix"), do: ~s[{:phoenix, github: "phoenixframework/phoenix"}]
defp phoenix_dep("deps/phoenix"), do: ~s[{:phoenix, "~> 0.17.1"}]
defp phoenix_dep(path), do: ~s[{:phoenix, path: #{inspect path}, override: true}]

defp phoenix_static_path("deps/phoenix"), do: "deps/phoenix"
Expand Down
2 changes: 1 addition & 1 deletion installer/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule Phoenix.New.Mixfile do

def project do
[app: :phoenix_new,
version: "0.17.0",
version: "0.17.1",
elixir: "~> 1.0-dev"]
end

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.Mixfile do
use Mix.Project

@version "0.17.0"
@version "0.17.1"

def project do
[app: :phoenix,
Expand Down

0 comments on commit aa6d7a8

Please sign in to comment.