Skip to content

Commit 6909ba2

Browse files
Merge branch 'master' into update/lift-json-3.5.0
2 parents 5cb8aee + ee5b06e commit 6909ba2

File tree

11 files changed

+18
-18
lines changed

11 files changed

+18
-18
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: olafurpg/setup-scala@v13
1313
with:
1414
java-version: "[email protected]"
15-
- uses: actions/checkout@v2.3.4
15+
- uses: actions/checkout@v2.4.0
1616
- run: ./setup.sh
1717
- run: ~/.conscript/bin/cs --version
1818
setup_script_windows:
@@ -22,7 +22,7 @@ jobs:
2222
- uses: olafurpg/setup-scala@v13
2323
with:
2424
java-version: "[email protected]"
25-
- uses: actions/checkout@v2.3.4
25+
- uses: actions/checkout@v2.4.0
2626
- run: Powershell.exe -File setup.ps1
2727
- shell: cmd
2828
run: "%HOMEDRIVE%%HOMEPATH%\\.conscript\\bin\\cs --version"
@@ -39,7 +39,7 @@ jobs:
3939
- uses: olafurpg/setup-scala@v13
4040
with:
4141
java-version: "adopt@1.${{ matrix.java }}"
42-
- uses: actions/checkout@v2.3.4
42+
- uses: actions/checkout@v2.4.0
4343
- uses: coursier/cache-action@v6
4444
- run: sbt -v test
4545
- run: |
@@ -53,11 +53,11 @@ jobs:
5353
- uses: olafurpg/setup-scala@v13
5454
with:
5555
java-version: "[email protected]"
56-
- uses: actions/checkout@v2.3.4
56+
- uses: actions/checkout@v2.4.0
5757
with:
5858
fetch-depth: 10
5959
- uses: coursier/cache-action@v6
60-
- uses: webfactory/[email protected].3
60+
- uses: webfactory/[email protected].4
6161
if: ${{ !github.event.repository.fork && github.ref == 'refs/heads/master' && github.event_name == 'push' }}
6262
with:
6363
ssh-private-key: ${{ secrets.DEPLOY_KEY_1 }}

.github/workflows/scala-steward.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
private_key: ${{ secrets.FOUNDWEEKENDS_BOT_KEY }}
1919
- name: Launch Scala Steward
2020
if: ${{ !github.event.repository.fork }}
21-
uses: scala-steward-org/scala-steward-action@v2.13.5
21+
uses: scala-steward-org/scala-steward-action@v2.16.0
2222
with:
2323
github-token: ${{ steps.generate_token.outputs.token }}
2424
author-email: "74864734+foundweekends-bot[bot]@users.noreply.github.com"

project/Dependencies.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import sbt._
33
object Dependencies {
44
val launcherInterface = "org.scala-sbt" % "launcher-interface" % "1.3.3"
55
val scalaSwing = "org.scala-lang.modules" %% "scala-swing" % "3.0.0"
6-
val dispatchCore = "net.databinder.dispatch" %% "dispatch-core" % "0.11.2"
6+
val dispatchCore = "net.databinder.dispatch" %% "dispatch-core" % "0.12.3"
77
val scopt = "com.github.scopt" %% "scopt" % "4.0.1"
8-
val liftJson = "net.liftweb" %% "lift-json" % "3.5.0"
9-
val slf4jJdk14 = "org.slf4j" % "slf4j-jdk14" % "1.7.32"
8+
val liftJson = "net.liftweb" %% "lift-json" % "2.6.3"
9+
val slf4jJdk14 = "org.slf4j" % "slf4j-jdk14" % "1.7.33"
1010
}

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.5.5
1+
sbt.version=1.6.1

sbt-conscript/src/main/scala/ConscriptPlugin.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ object ConscriptPlugin extends AutoPlugin {
1616
import autoImport._
1717
override def projectSettings: Seq[Def.Setting[_]] =
1818
List(
19-
csSbtLauncherVersion := "1.1.6",
20-
libraryDependencies += "org.scala-sbt" % "launcher" % csSbtLauncherVersion.value % "provided",
19+
csSbtLauncherVersion := "1.3.3",
20+
libraryDependencies += "org.scala-sbt" % "launcher-interface" % csSbtLauncherVersion.value % "provided",
2121
sourceDirectory in csRun := { (sourceDirectory in Compile).value / conscriptStr },
2222
target in csRun := { target.value / conscriptStr },
2323
csBoot := { (target in csRun).value / "boot" },

setup.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ echo "
6868
echo "@echo off
6969
java %JAVA_OPTS% -jar $CS\sbt-launch.jar @file:\$CLC %*" | Out-File -Encoding "ASCII" "$BIN\cs.bat"
7070

71-
$LJV = "1.1.6"
71+
$LJV = "1.3.3"
7272
$LJ = "launcher-$LJV.jar"
7373

7474
# If launcher is not in configuration directory

setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ java \$JAVA_OPTS -jar $CS/sbt-launch.jar @$CLC \"\$@\"" > "$BIN/cs"
4040

4141
chmod a+x "$BIN/cs"
4242

43-
LJV=1.1.6
43+
LJV=1.3.3
4444
LJ="launcher-$LJV.jar"
4545

4646
# If launcher is not in configuration directory

src/main/conscript/cs/launchconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[app]
2-
version: 0.5.6
2+
version: 0.5.8
33
org: org.foundweekends.conscript
44
name: conscript
55
class: conscript.Conscript

src/main/scala/conscript.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ object Conscript {
88
import dispatch.{ BuildInfo => _, _ }
99
import Apply.exec
1010
val http = dispatch.Http.configure { configBuilder =>
11-
configBuilder.setFollowRedirects(true)
11+
configBuilder.setFollowRedirect(true)
1212
}
1313

1414
private[this] def shutdownDispatch(): Unit = {

src/main/scala/launch.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ trait Launch extends Credentials {
99
import scala.concurrent.ExecutionContext.Implicits.global
1010

1111
val sbtlaunchalias = "sbt-launch.jar"
12-
val sbtLauncherVersion = "1.1.6"
12+
val sbtLauncherVersion = "1.3.3"
1313

1414
def launchJar(display: Display): Either[String, String] =
1515
configdir(s"launcher-$sbtLauncherVersion.jar") match {

0 commit comments

Comments
 (0)