The current application version is set as @version "0.0.0" in mix.exs. Ideally, this should be set to the current (or next) version in the source branch so that a dependency can be specified as:
{:file_store, "~> 0.2", github: "rzane/file_store", branch: "master"}
As it is, we cannot specify the version as anything other than >= 0.0.0 if using a git branch.
The current application version is set as
@version "0.0.0"inmix.exs. Ideally, this should be set to the current (or next) version in the source branch so that a dependency can be specified as:{:file_store, "~> 0.2", github: "rzane/file_store", branch: "master"}As it is, we cannot specify the version as anything other than
>= 0.0.0if using agitbranch.