Skip to content
Snippets Groups Projects
Commit 86058c9a authored by lain's avatar lain
Browse files

Return version in instance endpoint, set version to 0.9.0.

parent 0abd8a6b
No related branches found
No related tags found
No related merge requests found
......@@ -39,9 +39,9 @@ config :pleroma, :ostatus, Pleroma.Web.OStatus
config :pleroma, :httpoison, Pleroma.HTTP
version = with {version, 0} <- System.cmd("git", ["rev-parse", "HEAD"]) do
"Pleroma #{String.trim(version)}"
"Pleroma #{Mix.Project.config[:version]} #{String.trim(version)}"
else
_ -> "Pleroma dev"
_ -> "Pleroma #{Mix.Project.config[:version]} dev"
end
# Configures http settings, upstream proxy etc.
......
......@@ -3,7 +3,7 @@ defmodule Pleroma.Mixfile do
def project do
[app: :pleroma,
version: "0.0.1",
version: "0.9.0",
elixir: "~> 1.4",
elixirc_paths: elixirc_paths(Mix.env),
compilers: [:phoenix, :gettext] ++ Mix.compilers,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment