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

Migrate to sbt-typelevel #4160

Merged
merged 45 commits into from
Apr 10, 2022
Merged
Changes from 1 commit
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
499f288
Well, the build.sbt compiles
armanbilge Apr 3, 2022
ec57223
Regenerate workflow
armanbilge Apr 3, 2022
56db9ab
Consolidation
armanbilge Apr 3, 2022
b30190e
Fix compile errors
armanbilge Apr 3, 2022
809fe50
Disable doctests on foreign platforms
armanbilge Apr 3, 2022
b302d04
Fix js stuff
armanbilge Apr 3, 2022
05a58ca
Downgrade to sbt-typelevel-ci-release
armanbilge Apr 3, 2022
4afb353
Setup unidocs project
armanbilge Apr 3, 2022
8b650e6
Add organization settings
armanbilge Apr 3, 2022
9c8a013
Formatting
armanbilge Apr 3, 2022
0de5744
Disable unused warnings
armanbilge Apr 3, 2022
1899e0f
Disable unused warnings, except imports :(
armanbilge Apr 3, 2022
fb08e89
Fix bincompat
armanbilge Apr 3, 2022
f4e33f8
Give up on unused warnings
armanbilge Apr 3, 2022
1c68ec2
Disable fatal warnings for scaladoc
armanbilge Apr 3, 2022
d9ee77e
Add some scaladoc flags
armanbilge Apr 4, 2022
fd958d9
Fix https://github.com/typelevel/cats/issues/4149
armanbilge Apr 4, 2022
7d4bf21
Fix unidocs
armanbilge Apr 4, 2022
205d0cc
Make workflow definition independent of ++
armanbilge Apr 4, 2022
29b8c7b
Use latest munit
armanbilge Apr 4, 2022
2306446
Add Scala 3 only mima filters
armanbilge Apr 4, 2022
00e2efd
Fix binCompatTest on Scala 3
armanbilge Apr 4, 2022
7ac546f
Disable doctest on Scala 3
armanbilge Apr 4, 2022
ab40cc9
Run binCompatTest on scala 2 only
armanbilge Apr 4, 2022
d80ce2a
Move _all_ the binCompatTest sources :)
armanbilge Apr 4, 2022
3657ea1
Remove unused setting
armanbilge Apr 4, 2022
ce873ff
WIP migrate site to Laika
armanbilge Apr 6, 2022
fc025e4
Trying to fix some urls
armanbilge Apr 6, 2022
ac7797e
Fixed ... everything?
armanbilge Apr 6, 2022
88257fa
Disable fatal warnings for docs
armanbilge Apr 6, 2022
c4c5708
Regenerate workflow
armanbilge Apr 6, 2022
8c2f274
Tweak some stuff
armanbilge Apr 6, 2022
6319621
Fix badge snippets
armanbilge Apr 6, 2022
2cbe018
Fix edit url
armanbilge Apr 6, 2022
416225d
Update docs for contributing docs :)
armanbilge Apr 6, 2022
6b4ffb6
Clarify live-reload aspect of preview server
armanbilge Apr 6, 2022
7e93fb4
Merge remote-tracking branch 'upstream/main' into topic/sbt-typelevel
armanbilge Apr 7, 2022
174cdf8
Re-enable all warnings, non-fatally
armanbilge Apr 8, 2022
7e33f25
Upgrade to sbt-typelevel
armanbilge Apr 8, 2022
665d8f7
Roll out the copyright headers
armanbilge Apr 8, 2022
4085701
Merge branch 'topic/sbt-typelevel' into topic/sbt-typelevel-site
armanbilge Apr 8, 2022
71d97d4
Cats is 7 years old :')
armanbilge Apr 8, 2022
2c16802
scaladoc bugs ...
armanbilge Apr 8, 2022
ba5e479
Merge remote-tracking branch 'upstream/main' into topic/sbt-typelevel
armanbilge Apr 9, 2022
0bda83a
More headers
armanbilge Apr 9, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
scaladoc bugs ...
  • Loading branch information
armanbilge committed Apr 8, 2022
commit 2c16802d4dd55271547a07d7584d27012f0c8407
3 changes: 2 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,8 @@ lazy val core = crossProject(JSPlatform, JVMPlatform, NativePlatform)
.settings(commonSettings, macroSettings, simulacrumSettings)
.settings(Compile / sourceGenerators += (Compile / sourceManaged).map(Boilerplate.gen).taskValue)
.settings(
libraryDependencies += "org.scalacheck" %%% "scalacheck" % scalaCheckVersion % Test
libraryDependencies += "org.scalacheck" %%% "scalacheck" % scalaCheckVersion % Test,
Compile / doc / scalacOptions ~= { _.filterNot(_.startsWith("-W")) } // weird bug
)
.settings(testingDependencies)
.jsSettings(commonJsSettings)
Expand Down