Skip to content

Releases: sbt/launcher

1.4.4

18 Oct 06:18
v1.4.4
fd4b25d
Compare
Choose a tag to compare

behind the scene

Full Changelog: v1.4.3...v1.4.4

1.4.3

07 Jul 21:13
v1.4.3
eb6ef4f
Compare
Choose a tag to compare

Update

Full Changelog: v1.4.2...v1.4.3

1.4.2

30 Apr 00:07
v1.4.2
ab72937
Compare
Choose a tag to compare

What's Changed

  • Avoid shelling out to Powershell on Windows by @eed3si9n in #102

Full Changelog: v1.4.1...v1.4.2

1.4.1

02 Oct 08:05
v1.4.1
d9e0cbd
Compare
Choose a tag to compare

Full Changelog: v1.4.0...v1.4.1

1.4.0

21 Sep 21:36
v1.4.0
289a618
Compare
Choose a tag to compare
  • Adds support for auto detecting Scala 3 apps by @eed3si9n in #100

Full Changelog: v1.3.3...v1.4.0

1.3.3

11 Jul 05:56
v1.3.3
d4285b8
Compare
Choose a tag to compare

1.3.0

03 Apr 23:36
v1.3.0
bb99218
Compare
Choose a tag to compare

sbt launcher 1.3.0-M1 uses Coursier for resolution by default.
To use Apache Ivy like older launchers, run with -Dsbt.launcher.coursier=false.

#86 by @eed3si9n

1.3.0-M1

15 Mar 03:21
v1.3.0-M1
4b81529
Compare
Choose a tag to compare

sbt launcher 1.3.0-M1 uses Coursier for resolution by default.
To use Apache Ivy like older launchers, run with -Dsbt.launcher.coursier=false.

#86 by @eed3si9n

1.2.0

15 Mar 03:17
v1.2.0
Compare
Choose a tag to compare

1.1.6

19 Nov 00:01
v1.1.6
5478540
Compare
Choose a tag to compare

Don't make JAnsi ClassLoader unless necessary

For historical reasons, it was necessary to always put JAnsi in a ClassLoader above the rest of the metabuild classpath. As of sbt 1.x,
that is no longer the case and causes problems when using the latest JAnsi version in sbt. We still need to have the JAnsi loader for legacy
versions so now we only make the jansi loader if we detect that we are launching a 0.x version on non Cygwin windows. #81 by @eatkins