-
Notifications
You must be signed in to change notification settings - Fork 26
Support for aeson-2.0 #56
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
Conversation
authenticate/authenticate.cabal
Outdated
| library | ||
| build-depends: base >= 4.10 && < 5 | ||
| , aeson >= 0.5 | ||
| , aeson >= 2.0 && < 2.1 |
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 try to avoid adding lower bounds like this that will bifurcate packages. Would it be possible to update this PR to use CPP to support both old and new aeson?
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, aeson < 2.0 is now supported as well.
authenticate/authenticate.cabal
Outdated
| library | ||
| build-depends: base >= 4.10 && < 5 | ||
| , aeson >= 0.5 | ||
| , aeson >= 0.5 && < 1.6 || >= 2.0 && < 2.1 |
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'm not interested in adding upper bounds here, please remove.
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 removed upper bounds.
snoyberg
left a comment
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.
Thanks!
|
Great. BTW, this PR fixes #54, so you could close that issue too. |
No description provided.