I have a mix.exs
file that has some dependencies:
def deps do
[{:nadia, "~> 0.4"}]
end
Let's say I want to change Nadia to version 0.3
. I'm having a hard time doing that.
After making the change to mix.exs
, I can't get the version 0.3 for Nadia. Neither mix deps.update
nor mix deps.unlock && mix deps.update
help me.
I'm sure there's a way to do this; I just couldn't find it.
Thanks in advance!