Skip to content

Commit

Permalink
Bump for 0.9.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
chrismccord committed Feb 12, 2015
1 parent d166107 commit 45e83bd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## v0.9.0-dev
## v0.9.0 (2015-02-12)

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

Expand All @@ -11,12 +11,12 @@ See these [`0.8.x` to `0.9.0` upgrade instructions](https://gist.github.com/chri
* [Plug] Ensure session and flash are serializable to JSON

* Backwards incompatible changes
* [PubSub] The new PubSub system requires the adapter's superviser to be added to your supervisione tree. Add `supervisor(Phoenix.PubSub.PG2, [MyApp.PubSub])` to your app supervistor.
* [PubSub] The new PubSub system requires the adapter's configuration to be added to your Endpoint's mix config.
* [PubSub] The `Phoenix.PubSub` API now requires a registered server name, ie `Phoenix.PubSub.broadcast(MyApp.PubSub, "foo:bar", %{baz: :bang})`
* [Channel] Channel broadcasts from outside a socket connection now must be called off the Channel module directly, ie: `MyApp.MyChannel.broadcast("topic", "event", %{...})`
* [Channel] The error return signature has been changed from `{:error, socket, reason}` to {:error, reason, socket}`
* [Channel] Channel broadcasts from outside a socket connection now must be called from an Endpoint module directly, ie: `MyApp.Endpoint.broadcast("topic", "event", %{...})`
* [Channel] The error return signature has been changed from `{:error, socket, reason}` to `{:error, reason, socket}`
* [Plug] `Plug.CSRFProtection` now uses a cookie instead of session and expects a `"_csrf_token"` parameter instead of `"csrf_token"`
* [Router] The `destroy` action has been renamed to `delete`, update your controller actions and url builders accordingly
* [Router/Controller] The `destroy` action has been renamed to `delete`, update your controller actions and url builders accordingly


## v0.8.0 (2015-01-11)
Expand Down
2 changes: 1 addition & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Release Instructions

1. Bump version in CHANGELOG and mix.exs
2. Update phoenix reference in priv/templates/mix.exs to package
2. Update phoenix reference in priv/template/mix.exs to package
3. Run tests, commit, push branch and tags
4. Push package and docs to hex
5. Update CHANGELOG, mix.exs to -dev
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule Phoenix.Mixfile do

def project do
[app: :phoenix,
version: "0.9.0-dev",
version: "0.9.0",
elixir: "~> 1.0.2 or ~> 1.1-dev",
deps: deps,
package: package,
Expand Down
2 changes: 1 addition & 1 deletion priv/template/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ defmodule <%= application_module %>.Mixfile do
#
# Type `mix help deps` for examples and options
defp deps do
[<%= phoenix_dep %>,
[{:phoenix, "~> 0.9.0"},
{:cowboy, "~> 1.0"}]
end
end

0 comments on commit 45e83bd

Please sign in to comment.