Current section
37 Versions
Jump to
Current section
37 Versions
Compare versions
6
files changed
+10
additions
-12
deletions
| @@ -63,13 +63,11 @@ | |
| 63 63 | </tr> |
| 64 64 | |
| 65 65 | <tr><td><h4>Changelog</h4></td></tr> |
| 66 | - <tr> |
| 67 | - <td><strong>0.3.1</strong></td> |
| 68 | - - Fixes issue #155 [pr #156](https://github.com/infinitered/thesis-phoenix/pull/156) |
| 69 | - Ambiguous call to function repo/0 on `mix ecto.migrate` - Phoenix 1.4 |
| 70 | - </tr> |
| 71 66 | <tr> |
| 72 67 | <td> |
| 68 | + <strong>0.3.1</strong><br/> |
| 69 | + - Fixes issue #155 [pr #156](https://github.com/infinitered/thesis-phoenix/pull/156) Ambiguous call to function repo/0 on `mix ecto.migrate` - Phoenix 1.4 |
| 70 | + <br/><br/> |
| 73 71 | <strong>0.3.0</strong><br/> |
| 74 72 | - Removes the LZString compression for backups (page revisions) as per the conversation <a href="https://github.com/infinitered/thesis-phoenix/issues/129">here</a>. <br/> |
| 75 73 | - <em>Adds migration (run `mix thesis.install && mix ecto.migrate`)</em>. It is important to do this before 0.4.0 as the LZString dependency will be removed then.<br/> |
| @@ -107,7 +105,7 @@ _If you are having problems, view `README_INSTALL.md` for manual instructions._ | |
| 107 105 | |
| 108 106 | ```elixir |
| 109 107 | def deps do |
| 110 | - [{:thesis, "~> 0.3.3"}] |
| 108 | + [{:thesis, "~> 0.3.4"}] |
| 111 109 | end |
| 112 110 | |
| 113 111 | def application do |
| @@ -6,7 +6,7 @@ For automatic setup, see `README.md`. | |
| 6 6 | |
| 7 7 | ```elixir |
| 8 8 | def deps do |
| 9 | - [{:thesis, "~> 0.3.3"}] |
| 9 | + [{:thesis, "~> 0.3.4"}] |
| 10 10 | end |
| 11 11 | |
| 12 12 | def application do |
| @@ -35,7 +35,7 @@ | |
| 35 35 | <<"package.json">>]}. |
| 36 36 | {<<"licenses">>,[<<"MIT">>]}. |
| 37 37 | {<<"links">>, |
| 38 | - [{<<"Docs">>,<<"https://hexdocs.pm/thesis/0.3.3/api-reference.html">>}, |
| 38 | + [{<<"Docs">>,<<"https://hexdocs.pm/thesis/0.3.4/api-reference.html">>}, |
| 39 39 | {<<"GitHub">>,<<"https://github.com/infinitered/thesis-phoenix">>}]}. |
| 40 40 | {<<"name">>,<<"thesis">>}. |
| 41 41 | {<<"requirements">>, |
| @@ -79,4 +79,4 @@ | |
| 79 79 | {<<"optional">>,false}, |
| 80 80 | {<<"repository">>,<<"hexpm">>}, |
| 81 81 | {<<"requirement">>,<<"~> 0.0.7">>}]]}. |
| 82 | - {<<"version">>,<<"0.3.3">>}. |
| 82 | + {<<"version">>,<<"0.3.4">>}. |
| @@ -48,7 +48,7 @@ defmodule Thesis.Controller do | |
| 48 48 | if Thesis.Page.redirected?(page) && !conn.assigns[:thesis_editable] do |
| 49 49 | conn |
| 50 50 | |> put_status(301) |
| 51 | - |> redirect(to: page.redirect_url) |
| 51 | + |> redirect(external: page.redirect_url) |
| 52 52 | else |
| 53 53 | conn |
| 54 54 | |> put_status(200) |
| @@ -1,6 +1,6 @@ | |
| 1 1 | defmodule Thesis.Mixfile do |
| 2 2 | use Mix.Project |
| 3 | - @version "0.3.3" # REMEMBER TO UPDATE package.json and both READMEs! |
| 3 | + @version "0.3.4" # REMEMBER TO UPDATE package.json and both READMEs! |
| 4 4 | |
| 5 5 | def project do |
| 6 6 | [ |
Loading more files…