Skip to content

Commit 4a53295

Browse files
authored
Move toolkit to scalalang org (#1930)
* Move toolkit to scalalang org * Fix Toolkit tests * Fix release notes
1 parent ffa56e6 commit 4a53295

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

modules/build/src/test/scala/scala/build/tests/DirectiveTests.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ class DirectiveTests extends munit.FunSuite {
101101
assert(dep.nonEmpty)
102102

103103
val toolkitDep = dep.get.value
104-
expect(toolkitDep.organization == "org.virtuslab")
104+
expect(toolkitDep.organization == "org.scala-lang")
105105
expect(toolkitDep.name == "toolkit")
106106
expect(toolkitDep.version == "latest.release")
107107
}

modules/cli/src/test/scala/cli/commands/tests/RunOptionsTests.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class RunOptionsTests extends munit.FunSuite {
3131
assert(dep.nonEmpty)
3232

3333
val toolkitDep = dep.get.value
34-
expect(toolkitDep.organization == "org.virtuslab")
34+
expect(toolkitDep.organization == "org.scala-lang")
3535
expect(toolkitDep.name == "toolkit")
3636
expect(toolkitDep.version == "latest.release")
3737
}

modules/integration/src/test/scala/scala/cli/integration/RunTestDefinitions.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1122,7 +1122,7 @@ abstract class RunTestDefinitions(val scalaVersionOpt: Option[String])
11221122
|}""".stripMargin
11231123
)
11241124
inputs.fromRoot { root =>
1125-
val output = os.proc(TestUtil.cli, ".", "--toolkit", "0.1.4")
1125+
val output = os.proc(TestUtil.cli, ".", "--toolkit", "0.1.6")
11261126
.call(cwd = root).out.trim()
11271127

11281128
expect(output == root.toString())

project/deps.sc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ object Deps {
181181
def svm = ivy"org.graalvm.nativeimage:svm:$graalVmVersion"
182182
def swoval = ivy"com.swoval:file-tree-views:2.1.9"
183183
def testInterface = ivy"org.scala-sbt:test-interface:1.0"
184-
def toolkit = ivy"org.virtuslab:toolkit:0.1.0"
184+
def toolkit = ivy"org.scala-lang:toolkit:0.1.6"
185185
def usingDirectives = ivy"org.virtuslab:using_directives:0.1.0"
186186
// Lives at https://github.com/scala-cli/no-crc32-zip-input-stream, see #865
187187
// This provides a ZipInputStream that doesn't verify CRC32 checksums, that users

website/docs/release_notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ scala-cli . --with-toolkit latest
339339
There's also an appropriate `using` directive.
340340

341341
```scala compile
342-
//> using toolkit "0.1.4"
342+
//> using toolkit "0.1.6"
343343
```
344344

345345
Added by [@lwronski](https://github.com/lwronski) in [#1768](https://github.com/VirtusLab/scala-cli/pull/1768)

0 commit comments

Comments
 (0)