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

Use stable version of OS-Lib 0.10.7 #3515

Merged
merged 1 commit into from
Sep 11, 2024
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
2 changes: 1 addition & 1 deletion build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ object Deps {
val junitInterface = ivy"com.github.sbt:junit-interface:0.13.3"
val commonsIO = ivy"commons-io:commons-io:2.16.1"
val log4j2Core = ivy"org.apache.logging.log4j:log4j-core:2.23.1"
val osLib = ivy"com.lihaoyi::os-lib:0.10.7-M2"
val osLib = ivy"com.lihaoyi::os-lib:0.10.7"
val pprint = ivy"com.lihaoyi::pprint:0.9.0"
val mainargs = ivy"com.lihaoyi::mainargs:0.7.4"
val millModuledefsVersion = "0.11.0-M2"
Expand Down
2 changes: 1 addition & 1 deletion example/depth/tasks/11-module-run-task/build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ object foo extends ScalaModule {

object bar extends ScalaModule{
def scalaVersion = "2.13.8"
def ivyDeps = Agg(ivy"com.lihaoyi::os-lib:0.10.7-M2")
def ivyDeps = Agg(ivy"com.lihaoyi::os-lib:0.10.7")
}

// This example demonstrates using Mill ``ScalaModule``s as build tasks: rather
Expand Down
2 changes: 1 addition & 1 deletion example/extending/imports/3-import-ivy/build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import $ivy.`com.lihaoyi::scalatags:0.12.0`, scalatags.Text.all._
object `package` extends RootModule with ScalaModule {
def scalaVersion = "2.13.8"

def ivyDeps = Agg(ivy"com.lihaoyi::os-lib:0.10.7-M2")
def ivyDeps = Agg(ivy"com.lihaoyi::os-lib:0.10.7")
def htmlSnippet = T{ div(h1("hello"), p("world")).toString }
def resources = T.sources{
os.write(T.dest / "snippet.txt", htmlSnippet())
Expand Down
2 changes: 1 addition & 1 deletion example/extending/metabuild/4-meta-build/build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ object `package` extends RootModule with ScalaModule {
def scalaVersion = "2.13.4"
def ivyDeps = Agg(
ivy"com.lihaoyi::scalatags:${millbuild.DepVersions.scalatagsVersion}",
ivy"com.lihaoyi::os-lib:0.10.7-M2"
ivy"com.lihaoyi::os-lib:0.10.7"
)

def htmlSnippet = T{ h1("hello").toString }
Expand Down
2 changes: 1 addition & 1 deletion example/scalalib/builds/1-common-config/build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ object `package` extends RootModule with ScalaModule {
// You can have arbitrary numbers of third-party dependencies
def ivyDeps = Agg(
ivy"com.lihaoyi::scalatags:0.8.2",
ivy"com.lihaoyi::os-lib:0.10.7-M2",
ivy"com.lihaoyi::os-lib:0.10.7",
)

// Choose a main class to use for `.run` if there are multiple present
Expand Down
2 changes: 1 addition & 1 deletion example/scalalib/module/11-assembly-config/build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import mill.scalalib.Assembly._
object foo extends ScalaModule {
def moduleDeps = Seq(bar)
def scalaVersion = "2.13.8"
def ivyDeps = Agg(ivy"com.lihaoyi::os-lib:0.10.7-M2")
def ivyDeps = Agg(ivy"com.lihaoyi::os-lib:0.10.7")
def assemblyRules = Seq(
// all application.conf files will be concatenated into single file
Rule.Append("application.conf"),
Expand Down
2 changes: 1 addition & 1 deletion example/scalalib/module/5-resources/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.8"
def ivyDeps = Agg(
ivy"com.lihaoyi::os-lib:0.10.7-M2"
ivy"com.lihaoyi::os-lib:0.10.7"
)

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 @@ -7,7 +7,7 @@ object `package` extends RootModule with ScalaModule {
def ivyDeps = Agg(
ivy"com.lihaoyi::cask:0.9.1",
ivy"com.lihaoyi::scalatags:0.12.0",
ivy"com.lihaoyi::os-lib:0.10.7-M2"
ivy"com.lihaoyi::os-lib:0.10.7"
)

def resources = T {
Expand Down
Loading