BlakeWilliams / Elixir-Slack

Slack real time messaging and web API client in Elixir
MIT License
675 stars 182 forks source link

Current version is not published to hex.pm #257

Open wmealing opened 1 year ago

wmealing commented 1 year ago

Gday,

The project readme reccomends installing a version from hex.pm which is not published to hex.pm.

The workaround is to specify the mix's dep explicitly to github with the version tag

The example below seems to work if anyone else is affected by this:

# In mix.exs ...

 defp deps do
    [ {:slack, git: "https://github.com/BlakeWilliams/Elixir-Slack.git", tag: "v0.23.6"} ]
  end

Thank you for the effort put in to this library.

Thanks!