-
Notifications
You must be signed in to change notification settings - Fork 190
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
optionFormat in v1.3.2 not compatible with optionFormat in v1.3.1 #158
Comments
Retaining the old signature as a non-implicit should fix this. |
I also believe there is a problem with using the type aliases here... the implicit resolver doesn't seem to be able to equate |
Does spray-json use semantic versioning? |
I am stuck with a library that use spray-json 1.3.1 and another one which need spray-json 1.3.3 and I have the error mentioned in this issue. What should I concretely do to remove this incompatibility error (given that I'm a pretty newbie in scala) ? |
you could override the method in your context when using the 1.3.1 library |
or recompile either of the two mutually incompatible libraries |
Code compiled against 1.3.1 will throw an exception trying to find
optionFormat
if it's running using 1.3.2:See this change for the offending signature update.
The text was updated successfully, but these errors were encountered: