Skip to content
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

Removed dependency from typelevel compiler #49

Merged
merged 6 commits into from
Oct 29, 2018
Merged

Removed dependency from typelevel compiler #49

merged 6 commits into from
Oct 29, 2018

Conversation

barambani
Copy link
Member

No description provided.

sirocchj
sirocchj previously approved these changes Oct 29, 2018
Copy link
Member

@sirocchj sirocchj left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

change looks great to me, just minor style difference in build.sbt, feel free to discard. Can you also modify the README.md accordingly though? There's a section that talks about literal types which needs to go. The one about induction heuristics probably we can leave, scoping it to 2.11 though, wdyt?

build.sbt Outdated
@@ -18,6 +23,7 @@ val `fs2-core` = Def.setting("co.fs2" %%% "fs2-core" % V.
val `fs2-io` = Def.setting("co.fs2" %% "fs2-io" % V.fs2)
val kittens = Def.setting("org.typelevel" %%% "kittens" % V.kittens)
val refined = Def.setting("eu.timepit" %%% "refined" % V.refined)
val refined211 = Def.setting("eu.timepit" %%% "refined" % V.refined211)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suggestion: remove line above and change this to

Suggested change
val refined211 = Def.setting("eu.timepit" %%% "refined" % V.refined211)
val refined = Def.setting {
CrossVersion.partialVersion(scalaVersion.value) match {
case Some((2, 11)) => "eu.timepit" %%% "refined" % V.refined211
case _ => "eu.timepit" %%% "refined" % V.refined
}
}

then you could revert all relevant changes around this below

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nice. I'll do it

@barambani barambani merged commit 542adab into laserdisc-io:master Oct 29, 2018
@barambani barambani deleted the compiler branch October 29, 2018 19:58
sirocchj pushed a commit that referenced this pull request Nov 21, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants