Hologram v0.5.0 released!

Congrats on the release! :tada:

A user reported that the installation instructions were outdated after v0.5.0 removed redundant endpoint integration (which was simplified). If you’re getting errors during setup, just remove the use Hologram.Endpoint and hologram_socket/0 lines from your endpoint module and you should be good to go.

The Installation Guide on the website has been updated now. Thanks @bunnylushington for catching this!

Maybe it’s just me but I also needed to add "app" to elixirc_paths() in mix.exs otherwise visiting localhost shows the generic phoenix homepage.

defp elixirc_paths(:test), do: ["app", "lib", "test/support"]
defp elixirc_paths(_), do: ["app", "lib"]