@@ -391,18 +391,21 @@ object Build {
391391 (runMain in Compile ).toTask(s """ dotty.tools.dottydoc.Main ${cp.mkString(" " )} """ + args.mkString(" " ))
392392 }.evaluated,
393393
394- libraryDependencies ++= Seq (
395- " com.vladsch.flexmark" % " flexmark" % " 0.11.1" ,
396- " com.vladsch.flexmark" % " flexmark-ext-gfm-tasklist" % " 0.11.1" ,
397- " com.vladsch.flexmark" % " flexmark-ext-gfm-tables" % " 0.11.1" ,
398- " com.vladsch.flexmark" % " flexmark-ext-autolink" % " 0.11.1" ,
399- " com.vladsch.flexmark" % " flexmark-ext-anchorlink" % " 0.11.1" ,
400- " com.vladsch.flexmark" % " flexmark-ext-emoji" % " 0.11.1" ,
401- " com.vladsch.flexmark" % " flexmark-ext-gfm-strikethrough" % " 0.11.1" ,
402- " com.vladsch.flexmark" % " flexmark-ext-yaml-front-matter" % " 0.11.1" ,
403- Dependencies .`jackson-dataformat-yaml`,
404- " nl.big-o" % " liqp" % " 0.6.7"
405- )
394+ libraryDependencies ++= {
395+ val flexmarkVersion = " 0.28.32"
396+ Seq (
397+ " com.vladsch.flexmark" % " flexmark" % flexmarkVersion,
398+ " com.vladsch.flexmark" % " flexmark-ext-gfm-tasklist" % flexmarkVersion,
399+ " com.vladsch.flexmark" % " flexmark-ext-gfm-tables" % flexmarkVersion,
400+ " com.vladsch.flexmark" % " flexmark-ext-autolink" % flexmarkVersion,
401+ " com.vladsch.flexmark" % " flexmark-ext-anchorlink" % flexmarkVersion,
402+ " com.vladsch.flexmark" % " flexmark-ext-emoji" % flexmarkVersion,
403+ " com.vladsch.flexmark" % " flexmark-ext-gfm-strikethrough" % flexmarkVersion,
404+ " com.vladsch.flexmark" % " flexmark-ext-yaml-front-matter" % flexmarkVersion,
405+ Dependencies .`jackson-dataformat-yaml`,
406+ " nl.big-o" % " liqp" % " 0.6.7"
407+ )
408+ }
406409 )
407410
408411 lazy val `dotty-doc` = project.in(file(" doc-tool" )).asDottyDoc(NonBootstrapped )
@@ -772,7 +775,7 @@ object Build {
772775 // (you need to have `cancelable in Global := true` in your global sbt config to ctrl+c a run)
773776 fork in run := true ,
774777 libraryDependencies ++= Seq (
775- " org.eclipse.lsp4j" % " org.eclipse.lsp4j" % " 0.2 .0" ,
778+ " org.eclipse.lsp4j" % " org.eclipse.lsp4j" % " 0.3 .0" ,
776779 Dependencies .`jackson-databind`
777780 ),
778781 javaOptions := (javaOptions in `dotty-compiler-bootstrapped`).value,
@@ -902,7 +905,7 @@ object Build {
902905 settings(commonSettings).
903906 settings(
904907 EclipseKeys .skipProject := true ,
905- version := " 0.1.2 " , // Keep in sync with package.json
908+ version := " 0.1.3 " , // Keep in sync with package.json
906909
907910 autoScalaLibrary := false ,
908911 publishArtifact := false ,
0 commit comments