Skip to content

Commit

Permalink
Release 0.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chrismccord committed Aug 19, 2015
1 parent fbf38ee commit 296a6e9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Changelog

## v0.17.0-dev
## v0.17.0 (2015-8-19)

See these [`0.16.x` to `0.17.0` upgrade instructions](https://gist.github.com/chrismccord/ee5ae90b949a9768b871) to bring your existing apps up to speed.

* Enhancements
* [Endpoint] Allow `check_origin` and `force_ssl` to be config in transports and fallback to endpoint config
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, "~> 0.16"}]
defp phoenix_dep("deps/phoenix"), do: ~s[{:phoenix, "~> 0.17"}]
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.16.1",
version: "0.17.0",
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-dev"
@version "0.17.0"

def project do
[app: :phoenix,
Expand Down

0 comments on commit 296a6e9

Please sign in to comment.