Downgrade scala-parser-combinators to 1.x because of version conflicts #725
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Reproducer:
You end up with:
The problem is that most sbt plugins didn't upgrade to scala-parser-combinators v2 yet, so that's why this version conflicts occur.
Even the latest release of Scala 2.12 stays on v1 for now: https://github.com/scala/scala/blob/v2.12.17/versions.properties#L22
(But they did upgrade to scala-xml 2.x in 2.12.17 release however)
That's why I think it makes sense to downgrade in giter8 for now, until there is like a consens in the Scala world when plugins (that run on Scala 2.12) upgrade to v2. (That happened with scala-xml recently, where the scala-compiler and many sbt plugins upgraded scala-xml to v2)
Would it be possible to release 0.15.1 or 0.16 with that pr merged? Thanks!