-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade poison to 3.0 #35
Upgrade poison to 3.0 #35
Conversation
1 similar comment
how can it be decreased if I've only changed mix.exs and mix.lock? |
Thanks @vyorkin! This removes compatibility for versions 1.x and 2.x of poison which I'd rather avoid. Sadly, poison doesn't include a CHANGELOG to see what justified their major version bump (normally used for backward incompatible changes in Semver). Can you change the dependency so that all versions are allowed? |
just to be clear, you want all versions to be allowed |
{:towel, "~> 0.2"}, | ||
{:poolboy, "~> 1.5"}, | ||
{:geohash, "~> 0.1"}, | ||
{:ex_doc, ">= 0.0.0", only: :dev}, | ||
{:inch_ex, only: :docs}, | ||
{:inch_ex, ">= 0.0.0", only: :docs}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
had to change this to suppress warning
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
mix.exs
Outdated
@@ -27,12 +27,12 @@ defmodule Geocoder.Mixfile do | |||
|
|||
defp deps do | |||
[{:httpoison, "~> 0.8"}, | |||
{:poison, "~> 3.0"}, | |||
{:poison, ">= 0.0.0"}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I assume you want to completely relax the dependency
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, @vyorkin, for not getting back to you earlier. Coming back to your question further up, I think I would prefer < 4.0.0
in case poison ever starts to submit a changelog.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
got it, will update in a minute
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
3 similar comments
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If you could restrict the poison dep to < 4.0.0
, we're good to go!
Thank you, @vyorkin ! |
same as #16 , but bumps poison to 3.0 and has no conflicts