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 scalatags to 0.13.1 #3306

Merged
merged 1 commit into from
Jan 13, 2025
Merged
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
4 changes: 2 additions & 2 deletions build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ object Settings {
)
val mimaBaseVersions: Seq[String] =
0.to(13).map("0.11." + _) ++
Seq("0.12.0", "0.12.1", "0.12.2", "0.12.3", "0.12.4", "0.12.5")
Seq("0.12.0", "0.12.1", "0.12.2", "0.12.3", "0.12.4", "0.12.5")

val graalvmJvmId = "graalvm-community:23.0.1"
}
Expand Down Expand Up @@ -171,7 +171,7 @@ object Deps {
val scalacScoverage2Serializer =
ivy"org.scoverage::scalac-scoverage-serializer:${scoverage2Version}"
val scalaparse = ivy"com.lihaoyi::scalaparse:${fastparse.version}"
val scalatags = ivy"com.lihaoyi::scalatags:0.12.0"
val scalatags = ivy"com.lihaoyi::scalatags:0.13.1"
def scalaXml = ivy"org.scala-lang.modules::scala-xml:2.3.0"
// keep in sync with doc/antora/antory.yml
val semanticDBscala = ivy"org.scalameta:::semanticdb-scalac:4.12.3"
Expand Down
2 changes: 1 addition & 1 deletion example/extending/imports/2-import-ivy-scala/build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// and also escapes the input strings on your behalf:

import mill._, scalalib._
import $ivy.`com.lihaoyi::scalatags:0.12.0`, scalatags.Text.all._
import $ivy.`com.lihaoyi::scalatags:0.13.1`, scalatags.Text.all._

object bar extends ScalaModule {
def scalaVersion = "2.13.8"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package build
import mill._, scalalib._

object `package` extends MillBuildRootModule {
val scalatagsVersion = "0.12.0"
val scalatagsVersion = "0.13.1"
def ivyDeps = Agg(ivy"com.lihaoyi::scalatags:$scalatagsVersion")

def generatedSources = Task {
Expand Down
2 changes: 1 addition & 1 deletion example/fundamentals/cross/10-static-blog/build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// two third-party libraries - Commonmark and Scalatags - to deal with Markdown parsing and
// HTML generation respectively:
package build
import $ivy.`com.lihaoyi::scalatags:0.12.0`, scalatags.Text.all._
import $ivy.`com.lihaoyi::scalatags:0.13.1`, scalatags.Text.all._
import $ivy.`com.atlassian.commonmark:commonmark:0.13.1`
import org.commonmark.parser.Parser
import org.commonmark.renderer.html.HtmlRenderer
Expand Down
2 changes: 1 addition & 1 deletion example/scalalib/basic/1-simple/build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import mill._, scalalib._
object foo extends ScalaModule {
def scalaVersion = "2.13.11"
def ivyDeps = Agg(
ivy"com.lihaoyi::scalatags:0.12.0",
ivy"com.lihaoyi::scalatags:0.13.1",
ivy"com.lihaoyi::mainargs:0.6.2"
)

Expand Down
2 changes: 1 addition & 1 deletion example/scalalib/basic/6-realistic/build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ trait MyModule extends PublishModule {
}

trait MyScalaModule extends MyModule with CrossScalaModule {
def ivyDeps = Agg(ivy"com.lihaoyi::scalatags:0.12.0")
def ivyDeps = Agg(ivy"com.lihaoyi::scalatags:0.13.1")
object test extends ScalaTests {
def ivyDeps = Agg(ivy"com.lihaoyi::utest:0.8.4")
def testFramework = "utest.runner.Framework"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ object foo extends ScalaModule {
def scalaVersion = "2.13.8"

def ivyDeps = Agg(
ivy"com.lihaoyi::scalatags:0.12.0",
ivy"com.lihaoyi::scalatags:0.13.1",
ivy"com.lihaoyi::mainargs:0.6.2"
)

Expand Down
2 changes: 1 addition & 1 deletion example/scalalib/linting/2-contrib-scoverage/build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ object `package` extends RootModule with ScoverageModule {
def scoverageVersion = "2.1.0"
def scalaVersion = "2.13.11"
def ivyDeps = Agg(
ivy"com.lihaoyi::scalatags:0.12.0",
ivy"com.lihaoyi::scalatags:0.13.1",
ivy"com.lihaoyi::mainargs:0.6.2"
)

Expand Down
2 changes: 1 addition & 1 deletion example/scalalib/web/1-todo-webapp/build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ object `package` extends RootModule with ScalaModule {
def scalaVersion = "2.13.8"
def ivyDeps = Agg(
ivy"com.lihaoyi::cask:0.9.1",
ivy"com.lihaoyi::scalatags:0.12.0"
ivy"com.lihaoyi::scalatags:0.13.1"
)

object test extends ScalaTests {
Expand Down
2 changes: 1 addition & 1 deletion example/scalalib/web/2-webapp-cache-busting/build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ object `package` extends RootModule with ScalaModule {
def scalaVersion = "2.13.8"
def ivyDeps = Agg(
ivy"com.lihaoyi::cask:0.9.1",
ivy"com.lihaoyi::scalatags:0.12.0",
ivy"com.lihaoyi::scalatags:0.13.1",
ivy"com.lihaoyi::os-lib:0.10.7"
)

Expand Down
2 changes: 1 addition & 1 deletion example/scalalib/web/3-scalajs-module/build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import mill._, scalalib._, scalajslib._
object foo extends ScalaJSModule {
def scalaVersion = "2.13.14"
def scalaJSVersion = "1.16.0"
def ivyDeps = Agg(ivy"com.lihaoyi::scalatags::0.12.0")
def ivyDeps = Agg(ivy"com.lihaoyi::scalatags::0.13.1")
object test extends ScalaJSTests {
def ivyDeps = Agg(ivy"com.lihaoyi::utest::0.8.4")
def testFramework = "utest.runner.Framework"
Expand Down
2 changes: 1 addition & 1 deletion example/scalalib/web/4-webapp-scalajs/build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ object `package` extends RootModule with ScalaModule {
def scalaVersion = "2.13.14"
def ivyDeps = Agg(
ivy"com.lihaoyi::cask:0.9.1",
ivy"com.lihaoyi::scalatags:0.12.0"
ivy"com.lihaoyi::scalatags:0.13.1"
)

def resources = Task {
Expand Down
2 changes: 1 addition & 1 deletion example/scalalib/web/5-webapp-scalajs-shared/build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ object `package` extends RootModule with AppScalaModule {
object shared extends Module {
trait SharedModule extends AppScalaModule with PlatformScalaModule {
def ivyDeps = Agg(
ivy"com.lihaoyi::scalatags::0.12.0",
ivy"com.lihaoyi::scalatags::0.13.1",
ivy"com.lihaoyi::upickle::3.0.0"
)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ trait FooModule extends Cross.Module[String] {
developers = Seq(Developer("lihaoyi", "Li Haoyi", "https://github.com/lihaoyi"))
)

def ivyDeps = Agg(ivy"com.lihaoyi::scalatags::0.12.0")
def ivyDeps = Agg(ivy"com.lihaoyi::scalatags::0.13.1")
}

trait FooTestModule extends TestModule {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ trait Shared extends CrossScalaModule with PlatformScalaModule with PublishModul
developers = Seq(Developer("lihaoyi", "Li Haoyi", "https://github.com/lihaoyi"))
)

def ivyDeps = Agg(ivy"com.lihaoyi::scalatags::0.12.0")
def ivyDeps = Agg(ivy"com.lihaoyi::scalatags::0.13.1")
}

trait SharedTestModule extends TestModule {
Expand Down
Loading