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

Update mdoc to 2.5.0 #471

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ trait MorphirModule extends Cross.Module[String] with CrossPlatform { morphir =>
object site extends Docusaurus2Module with MDocModule {
val workspaceDir = millbuild.build.millSourcePath

override def scalaMdocVersion: T[String] = T("2.4.0")
override def scalaMdocVersion: T[String] = T("2.5.0")
override def scalaVersion = T(docsScalaVersion)
// MD Sources that must be compiled with Scala MDoc
override def mdocSources = T.sources(workspaceDir / "docs")
Expand Down
2 changes: 1 addition & 1 deletion project/modules/docs.sc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import os.Path

trait MDocModule extends ScalaModule {

def scalaMdocVersion: T[String] = T("2.4.0")
def scalaMdocVersion: T[String] = T("2.5.0")

def scalaMdocDep: T[Dep] = T(ivy"org.scalameta::mdoc:${scalaMdocVersion()}")

Expand Down