From 4470bf1e2c9ae9e82f51b57f41005d44e2efab9c Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 12 Jul 2021 13:37:31 +0200 Subject: [PATCH 01/93] Update sbt to 1.5.5 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 9edb75b..10fd9ee 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.5.4 +sbt.version=1.5.5 From 7f47f5ca75b861569d1906da06193069fcaa8e67 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 3 Aug 2021 23:22:41 +0200 Subject: [PATCH 02/93] Update sbt-scala-module to 2.4.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 33d0107..0401cc3 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1 +1 @@ -addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "2.3.1") +addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "2.4.0") From 6d85547a9c37ac8a8eb8d8cb51745094f5550a10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20=C5=A0pan=C4=9Bl?= Date: Thu, 5 Aug 2021 13:11:47 +0200 Subject: [PATCH 03/93] Cross compile for Scala.js --- build.sbt | 33 +++++++++++++++++++++------------ project/plugins.sbt | 2 ++ 2 files changed, 23 insertions(+), 12 deletions(-) diff --git a/build.sbt b/build.sbt index 1f17478..4359cbd 100644 --- a/build.sbt +++ b/build.sbt @@ -1,17 +1,27 @@ -ScalaModulePlugin.scalaModuleSettings -ScalaModulePlugin.scalaModuleOsgiSettings -name := "scala-async" -scalaModuleAutomaticModuleName := Some("scala.async") +val sharedSettings = ScalaModulePlugin.scalaModuleSettings ++ ScalaModulePlugin.scalaModuleOsgiSettings ++ Seq( + name := "scala-async", + scalaModuleAutomaticModuleName := Some("scala.async"), -libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value % "provided" -libraryDependencies += "junit" % "junit" % "4.13.2" % Test -libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % Test + OsgiKeys.exportPackage := Seq(s"scala.async.*;version=${version.value}"), -ScalaModulePlugin.enableOptimizer -testOptions += Tests.Argument(TestFrameworks.JUnit, "-q", "-v", "-s") -Test / scalacOptions ++= Seq("-Yrangepos") -scalacOptions ++= List("-deprecation" , "-Xasync") + libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value % "provided", + libraryDependencies += "junit" % "junit" % "4.13.2" % Test, + libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % Test, + + ScalaModulePlugin.enableOptimizer, + testOptions += Tests.Argument(TestFrameworks.JUnit, "-q", "-v", "-s"), + Test / scalacOptions ++= Seq("-Yrangepos"), + scalacOptions ++= List("-deprecation" , "-Xasync") +) + +lazy val proj = crossProject(JSPlatform, JVMPlatform) + .withoutSuffixFor(JVMPlatform) + .crossType(CrossType.Pure) + .in(file(".")) + .settings(sharedSettings) + +lazy val root = project.in(file(".")).settings(sharedSettings) Global / parallelExecution := false @@ -41,7 +51,6 @@ pomExtra := ( ) -OsgiKeys.exportPackage := Seq(s"scala.async.*;version=${version.value}") commands += testDeterminism diff --git a/project/plugins.sbt b/project/plugins.sbt index 33d0107..aed2291 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1 +1,3 @@ addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "2.3.1") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.7.0") +addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.0.0") From 45163218ae7890fade4c3d90d92b2cee7c054ed2 Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Tue, 31 Aug 2021 15:28:46 -0400 Subject: [PATCH 04/93] configure sbt-version-policy --- build.sbt | 1 + build.sh | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 1f17478..3eafd51 100644 --- a/build.sbt +++ b/build.sbt @@ -3,6 +3,7 @@ ScalaModulePlugin.scalaModuleOsgiSettings name := "scala-async" scalaModuleAutomaticModuleName := Some("scala.async") +versionPolicyIntention := Compatibility.BinaryAndSourceCompatible libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value % "provided" libraryDependencies += "junit" % "junit" % "4.13.2" % Test diff --git a/build.sh b/build.sh index 65cc465..7b807f8 100755 --- a/build.sh +++ b/build.sh @@ -37,6 +37,7 @@ tagPat="^v$verPat(#$verPat)?$" if [[ "$TRAVIS_TAG" =~ $tagPat ]]; then releaseTask="ci-release" + versionCheckTask="versionCheck" tagScalaVer=$(echo $TRAVIS_TAG | sed s/[^#]*// | sed s/^#//) if [[ "$tagScalaVer" == "" ]]; then if ! isReleaseJob; then @@ -62,4 +63,4 @@ export CI_SNAPSHOT_RELEASE="publish" # for now, until we're confident in the new release scripts, just close the staging repo. export CI_SONATYPE_RELEASE="; sonatypePrepare; sonatypeBundleUpload; sonatypeClose" -sbt "$setTagScalaVersion" clean test publishLocal $releaseTask +sbt "$setTagScalaVersion" clean test publishLocal $versionCheckTask $releaseTask From 6f03ac03096f36678f091a3130651a3173ba74df Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Tue, 31 Aug 2021 22:59:31 +0200 Subject: [PATCH 05/93] Update sbt-scalajs-crossproject to 1.1.0 (#279) --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 5d5094e..e1e1b9e 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,3 +1,3 @@ addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "2.4.0") addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.7.0") -addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.0.0") +addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.1.0") From 3c3e3258ec9f5693ccc470ad545c541d2ba2aae7 Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Tue, 31 Aug 2021 16:00:19 -0400 Subject: [PATCH 06/93] update headers with sbt-header --- build.sbt | 12 +++++++++--- src/main/scala/scala/async/FutureStateMachine.scala | 1 + src/test/scala/scala/async/ExceptionalTest.scala | 12 ++++++++++++ src/test/scala/scala/async/FutureSpec.scala | 1 + src/test/scala/scala/async/SmokeTest.scala | 1 + src/test/scala/scala/async/TestUtil.scala | 1 + 6 files changed, 25 insertions(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index 25c20f9..c2c26ac 100644 --- a/build.sbt +++ b/build.sbt @@ -1,7 +1,6 @@ val sharedSettings = ScalaModulePlugin.scalaModuleSettings ++ ScalaModulePlugin.scalaModuleOsgiSettings ++ Seq( name := "scala-async", scalaModuleAutomaticModuleName := Some("scala.async"), - versionPolicyIntention := Compatibility.BinaryAndSourceCompatible, OsgiKeys.exportPackage := Seq(s"scala.async.*;version=${version.value}"), @@ -12,7 +11,7 @@ val sharedSettings = ScalaModulePlugin.scalaModuleSettings ++ ScalaModulePlugin. ScalaModulePlugin.enableOptimizer, testOptions += Tests.Argument(TestFrameworks.JUnit, "-q", "-v", "-s"), Test / scalacOptions ++= Seq("-Yrangepos"), - scalacOptions ++= List("-deprecation" , "-Xasync") + scalacOptions ++= List("-deprecation" , "-Xasync"), ) lazy val proj = crossProject(JSPlatform, JVMPlatform) @@ -20,8 +19,15 @@ lazy val proj = crossProject(JSPlatform, JVMPlatform) .crossType(CrossType.Pure) .in(file(".")) .settings(sharedSettings) + // until we have actually published for Scala.js + .jvmSettings(versionPolicyIntention := Compatibility.BinaryAndSourceCompatible) + .jsSettings(versionPolicyIntention := Compatibility.None) + // override sbt-scala-module default (which is unsuitable for Scala.js) + .jsSettings(Test / fork := false) -lazy val root = project.in(file(".")).settings(sharedSettings) +lazy val root = project.in(file(".")) + .settings(sharedSettings) + .aggregate(proj.jvm, proj.js) Global / parallelExecution := false diff --git a/src/main/scala/scala/async/FutureStateMachine.scala b/src/main/scala/scala/async/FutureStateMachine.scala index 7d01654..4c65190 100644 --- a/src/main/scala/scala/async/FutureStateMachine.scala +++ b/src/main/scala/scala/async/FutureStateMachine.scala @@ -9,6 +9,7 @@ * See the NOTICE file distributed with this work for * additional information regarding copyright ownership. */ + package scala.async import java.util.Objects diff --git a/src/test/scala/scala/async/ExceptionalTest.scala b/src/test/scala/scala/async/ExceptionalTest.scala index 6775102..fcdf5c1 100644 --- a/src/test/scala/scala/async/ExceptionalTest.scala +++ b/src/test/scala/scala/async/ExceptionalTest.scala @@ -1,3 +1,15 @@ +/* + * Scala (https://www.scala-lang.org) + * + * Copyright EPFL and Lightbend, Inc. + * + * Licensed under Apache License 2.0 + * (http://www.apache.org/licenses/LICENSE-2.0). + * + * See the NOTICE file distributed with this work for + * additional information regarding copyright ownership. + */ + package scala.async import java.util.concurrent.atomic.AtomicReference diff --git a/src/test/scala/scala/async/FutureSpec.scala b/src/test/scala/scala/async/FutureSpec.scala index 794be3f..262d748 100644 --- a/src/test/scala/scala/async/FutureSpec.scala +++ b/src/test/scala/scala/async/FutureSpec.scala @@ -9,6 +9,7 @@ * See the NOTICE file distributed with this work for * additional information regarding copyright ownership. */ + package scala.async import java.util.concurrent.ConcurrentHashMap diff --git a/src/test/scala/scala/async/SmokeTest.scala b/src/test/scala/scala/async/SmokeTest.scala index 204481d..4804893 100644 --- a/src/test/scala/scala/async/SmokeTest.scala +++ b/src/test/scala/scala/async/SmokeTest.scala @@ -9,6 +9,7 @@ * See the NOTICE file distributed with this work for * additional information regarding copyright ownership. */ + package scala.async import org.junit.{Assert, Test} diff --git a/src/test/scala/scala/async/TestUtil.scala b/src/test/scala/scala/async/TestUtil.scala index ff91aca..11bab02 100644 --- a/src/test/scala/scala/async/TestUtil.scala +++ b/src/test/scala/scala/async/TestUtil.scala @@ -9,6 +9,7 @@ * See the NOTICE file distributed with this work for * additional information regarding copyright ownership. */ + package scala.async import java.util.concurrent.{CountDownLatch, TimeUnit} From b6ee2185be2f07a17731466535f5d67dfb3a8692 Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Tue, 31 Aug 2021 15:48:31 -0400 Subject: [PATCH 07/93] replace Travis-CI with GitHub Actions --- .github/workflows/ci.yml | 23 ++++++++++++ .github/workflows/release.yml | 21 +++++++++++ .travis.yml | 24 ------------- README.md | 14 +++----- build.sbt | 3 ++ build.sh | 66 ----------------------------------- project/plugins.sbt | 2 +- 7 files changed, 53 insertions(+), 100 deletions(-) create mode 100644 .github/workflows/ci.yml create mode 100644 .github/workflows/release.yml delete mode 100644 .travis.yml delete mode 100755 build.sh diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..d64c4b8 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,23 @@ +name: test +on: + push: + branches: + - main + pull_request: +jobs: + test: + strategy: + fail-fast: false + matrix: + java: [8, 11, 17-ea] + scala: [2.12.14, 2.13.6] + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: coursier/cache-action@v6 + - uses: actions/setup-java@v2 + with: + distribution: adopt + java-version: ${{matrix.java}} + - name: Test + run: sbt ++${{matrix.scala}} test proj/headerCheck package diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..dc33711 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,21 @@ +name: Release +on: + push: + tags: ["*"] +jobs: + publish: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 0 + - uses: actions/setup-java@v2 + with: + distribution: adopt + java-version: 8 + - run: sbt versionCheck ci-release + env: + PGP_PASSPHRASE: ${{secrets.PGP_PASSPHRASE}} + PGP_SECRET: ${{secrets.PGP_SECRET}} + SONATYPE_PASSWORD: ${{secrets.SONATYPE_PASSWORD}} + SONATYPE_USERNAME: ${{secrets.SONATYPE_USERNAME}} diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 8404aae..0000000 --- a/.travis.yml +++ /dev/null @@ -1,24 +0,0 @@ -version: ~> 1.0 # needed for imports - -import: scala/scala-dev:travis/default.yml - -language: scala - -scala: - - 2.12.14 - - 2.13.6 - -env: - - ADOPTOPENJDK=8 - - ADOPTOPENJDK=11 - - ADOPTOPENJDK=17 - -install: - - git fetch --tags # get all tags for sbt-dynver - -script: ./build.sh - -notifications: - email: - - jason.zaugg@lightbend.com - - seth.tisue@lightbend.com diff --git a/README.md b/README.md index f3e5f0e..3a46654 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,8 @@ -# scala-async [![Build Status](https://travis-ci.org/scala/scala-async.svg?branch=master)](https://travis-ci.org/scala/scala-async) [](http://search.maven.org/#search%7Cga%7C1%7Cg%3Aorg.scala-lang.modules%20a%3Ascala-async_2.12) [](http://search.maven.org/#search%7Cga%7C1%7Cg%3Aorg.scala-lang.modules%20a%3Ascala-async_2.13) +# scala-async [](http://search.maven.org/#search%7Cga%7C1%7Cg%3Aorg.scala-lang.modules%20a%3Ascala-async_2.12) [](http://search.maven.org/#search%7Cga%7C1%7Cg%3Aorg.scala-lang.modules%20a%3Ascala-async_2.13) -A DSL to enable a direct style of programming with when composing values wrapped in Scala `Future`s. +A Scala DSL to enable a direct style of coding when composing `Future`s. -## Quick start - -To include scala-async in an existing project use the library published on Maven Central. -For sbt projects add the following to your build definition - build.sbt or project/Build.scala: - -### Use a modern Scala compiler +## Usage As of scala-async 1.0, Scala 2.12.12+ or 2.13.3+ are required. @@ -44,6 +39,7 @@ to match your project’s Scala binary version): Add the `-Xasync` to the Scala compiler options. #### SBT Example + ```scala scalacOptions += "-Xasync" ``` @@ -133,7 +129,7 @@ def combined: Future[Int] = async { ### `await` must be directly in the control flow of the async expression -The `await` cannot be nested under a local method, object, class or lambda: +The `await` cannot be nested under a local method, object, class or lambda: ``` async { diff --git a/build.sbt b/build.sbt index c2c26ac..fd51543 100644 --- a/build.sbt +++ b/build.sbt @@ -2,6 +2,9 @@ val sharedSettings = ScalaModulePlugin.scalaModuleSettings ++ ScalaModulePlugin. name := "scala-async", scalaModuleAutomaticModuleName := Some("scala.async"), + crossScalaVersions := Seq("2.13.6", "2.12.14"), + scalaVersion := crossScalaVersions.value.head, + OsgiKeys.exportPackage := Seq(s"scala.async.*;version=${version.value}"), libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value % "provided", diff --git a/build.sh b/build.sh deleted file mode 100755 index 7b807f8..0000000 --- a/build.sh +++ /dev/null @@ -1,66 +0,0 @@ -#!/bin/bash - -set -e - -# Builds of tagged revisions are published to sonatype staging. - -# Travis runs a build on new revisions and on new tags, so a tagged revision is built twice. -# Builds for a tag have TRAVIS_TAG defined, which we use for identifying tagged builds. - -# sbt-dynver sets the version number from the tag -# sbt-travisci sets the Scala version from the travis job matrix - -# When a new binary incompatible Scala version becomes available, a previously released version -# can be released using that new Scala version by creating a new tag containing the Scala version -# after a hash, e.g., v1.2.3#2.13.0-M3. - -# For normal tags that are cross-built, we release on JDK 8 for Scala 2.x -isReleaseJob() { - if [[ "$ADOPTOPENJDK" == "8" ]]; then - true - else - false - fi -} - -# For tags that define a Scala version, we pick the jobs of one Scala version (2.13.x) to do the releases -isTagScalaReleaseJob() { - if [[ "$ADOPTOPENJDK" == "8" && "$TRAVIS_SCALA_VERSION" =~ ^2\.13\.[0-9]+$ ]]; then - true - else - false - fi -} - -verPat="[0-9]+\.[0-9]+\.[0-9]+(-[A-Za-z0-9-]+)?" -tagPat="^v$verPat(#$verPat)?$" - -if [[ "$TRAVIS_TAG" =~ $tagPat ]]; then - releaseTask="ci-release" - versionCheckTask="versionCheck" - tagScalaVer=$(echo $TRAVIS_TAG | sed s/[^#]*// | sed s/^#//) - if [[ "$tagScalaVer" == "" ]]; then - if ! isReleaseJob; then - echo "Not releasing on Java $ADOPTOPENJDK with Scala $TRAVIS_SCALA_VERSION" - exit 0 - fi - else - if isTagScalaReleaseJob; then - setTagScalaVersion='set every scalaVersion := "'$tagScalaVer'"' - else - echo "The releases for Scala $tagScalaVer are built by other jobs in the travis job matrix" - exit 0 - fi - fi -fi - -# default is +publishSigned; we cross-build with travis jobs, not sbt's crossScalaVersions -export CI_RELEASE="publishSigned" -export CI_SNAPSHOT_RELEASE="publish" - -# default is sonatypeBundleRelease, which closes and releases the staging repo -# see https://github.com/xerial/sbt-sonatype#commands -# for now, until we're confident in the new release scripts, just close the staging repo. -export CI_SONATYPE_RELEASE="; sonatypePrepare; sonatypeBundleUpload; sonatypeClose" - -sbt "$setTagScalaVersion" clean test publishLocal $versionCheckTask $releaseTask diff --git a/project/plugins.sbt b/project/plugins.sbt index 5d5094e..7af85ff 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,3 +1,3 @@ -addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "2.4.0") +addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "3.0.0") addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.7.0") addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.0.0") From d022be51f620954a8e2ffea1cfa61cb56bc07331 Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Wed, 1 Sep 2021 18:17:25 -0400 Subject: [PATCH 08/93] fix the release build (#281) --- .github/workflows/release.yml | 2 +- build.sbt | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index dc33711..c8ff38b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,7 @@ jobs: with: distribution: adopt java-version: 8 - - run: sbt versionCheck ci-release + - run: sbt proj/versionCheck ci-release env: PGP_PASSPHRASE: ${{secrets.PGP_PASSPHRASE}} PGP_SECRET: ${{secrets.PGP_SECRET}} diff --git a/build.sbt b/build.sbt index fd51543..71834e4 100644 --- a/build.sbt +++ b/build.sbt @@ -22,7 +22,8 @@ lazy val proj = crossProject(JSPlatform, JVMPlatform) .crossType(CrossType.Pure) .in(file(".")) .settings(sharedSettings) - // until we have actually published for Scala.js + // until we have actually published for Scala.js. this is also why, + // for now, release.yml does just `proj/versionCheck` instead of `versionCheck` .jvmSettings(versionPolicyIntention := Compatibility.BinaryAndSourceCompatible) .jsSettings(versionPolicyIntention := Compatibility.None) // override sbt-scala-module default (which is unsuitable for Scala.js) From 1a57eff5cab1841a450f482547854f74638cb79a Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Thu, 9 Sep 2021 17:10:29 -0500 Subject: [PATCH 09/93] set fetch-depth to 0 as recommended by sbt-ci-release --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d64c4b8..183ac60 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,6 +14,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 + with: + fetch-depth: 0 - uses: coursier/cache-action@v6 - uses: actions/setup-java@v2 with: From 204f0377e5e5dc827c3e82ae5f32ed2536362a14 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 15 Sep 2021 02:19:49 +0200 Subject: [PATCH 10/93] Update scala-library, scala-reflect to 2.12.15 --- .github/workflows/ci.yml | 2 +- build.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 183ac60..65656d1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: fail-fast: false matrix: java: [8, 11, 17-ea] - scala: [2.12.14, 2.13.6] + scala: [2.12.15, 2.13.6] runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 diff --git a/build.sbt b/build.sbt index 71834e4..34186c3 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ val sharedSettings = ScalaModulePlugin.scalaModuleSettings ++ ScalaModulePlugin. name := "scala-async", scalaModuleAutomaticModuleName := Some("scala.async"), - crossScalaVersions := Seq("2.13.6", "2.12.14"), + crossScalaVersions := Seq("2.13.6", "2.12.15"), scalaVersion := crossScalaVersions.value.head, OsgiKeys.exportPackage := Seq(s"scala.async.*;version=${version.value}"), From 75a2d8bbafd3eccbd530b1d787cf4ba18d4091b8 Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Tue, 28 Sep 2021 19:45:27 -0600 Subject: [PATCH 11/93] CI: test JDK 17 final (#283) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 65656d1..12126c8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: false matrix: - java: [8, 11, 17-ea] + java: [8, 11, 17] scala: [2.12.15, 2.13.6] runs-on: ubuntu-latest steps: From 438e9fd1d165025ac3198343db9276ee89c3cc58 Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Mon, 4 Oct 2021 17:19:40 -0600 Subject: [PATCH 12/93] AdoptOpenJDK is now Temurin (#284) --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 12126c8..e10d0d7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: - uses: coursier/cache-action@v6 - uses: actions/setup-java@v2 with: - distribution: adopt + distribution: temurin java-version: ${{matrix.java}} - name: Test run: sbt ++${{matrix.scala}} test proj/headerCheck package diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c8ff38b..0123f96 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-java@v2 with: - distribution: adopt + distribution: temurin java-version: 8 - run: sbt proj/versionCheck ci-release env: From 5516e9055f49c87887063138a83da51fc34c5257 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 6 Oct 2021 22:01:10 +0200 Subject: [PATCH 13/93] Update sbt-scalajs, scalajs-compiler, ... to 1.7.1 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 7d7de94..fe4cbad 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,3 +1,3 @@ addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "3.0.0") -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.7.0") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.7.1") addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.1.0") From 7f3841768928f36fad41a2788a2c86f9529b9730 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Wed, 27 Oct 2021 16:38:53 +0200 Subject: [PATCH 14/93] Update junit-interface to 0.13.2 (#286) --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 34186c3..10332c4 100644 --- a/build.sbt +++ b/build.sbt @@ -9,7 +9,7 @@ val sharedSettings = ScalaModulePlugin.scalaModuleSettings ++ ScalaModulePlugin. libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value % "provided", libraryDependencies += "junit" % "junit" % "4.13.2" % Test, - libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % Test, + libraryDependencies += "com.github.sbt" % "junit-interface" % "0.13.2" % Test, ScalaModulePlugin.enableOptimizer, testOptions += Tests.Argument(TestFrameworks.JUnit, "-q", "-v", "-s"), From 6c4457ed5dcc1a776d24515c184df6a7d36c4a90 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Wed, 27 Oct 2021 16:39:02 +0200 Subject: [PATCH 15/93] Update junit-interface to 0.13.2 (#286) From 4ae60fe7b4e0ce83203cb0b53d7ce6fd05fd1c91 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Wed, 3 Nov 2021 00:19:29 +0100 Subject: [PATCH 16/93] Update scala-library, scala-reflect to 2.13.7 (#287) Co-authored-by: kenji yoshida <6b656e6a69@gmail.com> --- .github/workflows/ci.yml | 2 +- README.md | 2 +- build.sbt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e10d0d7..033abdc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: fail-fast: false matrix: java: [8, 11, 17] - scala: [2.12.15, 2.13.6] + scala: [2.12.15, 2.13.7] runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 diff --git a/README.md b/README.md index 3a46654..cac98ec 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ to match your project’s Scala binary version): org.scala-lang scala-reflect - 2.13.6 + 2.13.7 provided ``` diff --git a/build.sbt b/build.sbt index 10332c4..b93d21d 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ val sharedSettings = ScalaModulePlugin.scalaModuleSettings ++ ScalaModulePlugin. name := "scala-async", scalaModuleAutomaticModuleName := Some("scala.async"), - crossScalaVersions := Seq("2.13.6", "2.12.15"), + crossScalaVersions := Seq("2.13.7", "2.12.15"), scalaVersion := crossScalaVersions.value.head, OsgiKeys.exportPackage := Seq(s"scala.async.*;version=${version.value}"), From d122df59420e2c79d242f510b3d3c3a36a289128 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 10 Dec 2021 21:36:30 +0100 Subject: [PATCH 17/93] Update sbt to 1.5.6 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 10fd9ee..bb3a9b7 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.5.5 +sbt.version=1.5.6 From 774ea283ec9dbefe1aae7f59ffef8e5de92633d3 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 11 Dec 2021 03:59:02 +0100 Subject: [PATCH 18/93] Update sbt-scalajs, scalajs-compiler, ... to 1.8.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index fe4cbad..a074cfd 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,3 +1,3 @@ addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "3.0.0") -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.7.1") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.8.0") addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.1.0") From 165d83e4f3f0daa7017cfdd84b9e8c7b96aebb5f Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Thu, 16 Dec 2021 15:54:24 +0100 Subject: [PATCH 19/93] Update sbt to 1.5.7 (#290) --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index bb3a9b7..baf5ff3 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.5.6 +sbt.version=1.5.7 From 4283f9dd723ea3b68653cf87a836f74fae0f9b04 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Tue, 21 Dec 2021 20:28:02 +0100 Subject: [PATCH 20/93] Update sbt to 1.5.8 (#291) --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index baf5ff3..e64c208 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.5.7 +sbt.version=1.5.8 From 997fef914db48c7e98239db1f950181eb66f0a62 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 27 Dec 2021 08:34:15 +0100 Subject: [PATCH 21/93] Update sbt to 1.6.0 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index e64c208..1e70b0c 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.5.8 +sbt.version=1.6.0 From aa1b858d0d1f5ac4368888608384ff8363069d7c Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Wed, 29 Dec 2021 21:42:14 +0100 Subject: [PATCH 22/93] Update sbt to 1.6.1 (#294) --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 1e70b0c..3161d21 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.6.0 +sbt.version=1.6.1 From 900a6aaca7344aa7046ade795bcf11ca85fcced9 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Wed, 29 Dec 2021 21:42:28 +0100 Subject: [PATCH 23/93] Update junit-interface to 0.13.3 (#293) --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index b93d21d..1295811 100644 --- a/build.sbt +++ b/build.sbt @@ -9,7 +9,7 @@ val sharedSettings = ScalaModulePlugin.scalaModuleSettings ++ ScalaModulePlugin. libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value % "provided", libraryDependencies += "junit" % "junit" % "4.13.2" % Test, - libraryDependencies += "com.github.sbt" % "junit-interface" % "0.13.2" % Test, + libraryDependencies += "com.github.sbt" % "junit-interface" % "0.13.3" % Test, ScalaModulePlugin.enableOptimizer, testOptions += Tests.Argument(TestFrameworks.JUnit, "-q", "-v", "-s"), From 53f1bedd2817be4da229321e7b3dc727f98d1c63 Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Wed, 5 Jan 2022 16:05:14 -0800 Subject: [PATCH 24/93] copyright 2022 --- NOTICE | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/NOTICE b/NOTICE index f89d67d..6923059 100644 --- a/NOTICE +++ b/NOTICE @@ -1,6 +1,6 @@ Scala async -Copyright (c) 2012-2021 EPFL -Copyright (c) 2012-2021 Lightbend, Inc. +Copyright (c) 2012-2022 EPFL +Copyright (c) 2012-2022 Lightbend, Inc. Scala includes software developed at LAMP/EPFL (https://lamp.epfl.ch/) and From 6c9306e250ef65a8e1e5e3bd5757474e44169004 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Thu, 6 Jan 2022 16:33:09 +0100 Subject: [PATCH 25/93] Update sbt-scala-module to 3.0.1 (#295) --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index a074cfd..9bd6506 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,3 +1,3 @@ -addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "3.0.0") +addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "3.0.1") addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.8.0") addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.1.0") From 0b3007060d991bd3f4c7bb5b686b65350fe5036c Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Mon, 17 Jan 2022 16:16:08 +0100 Subject: [PATCH 26/93] Update scala-library, scala-reflect to 2.13.8 (#296) --- .github/workflows/ci.yml | 2 +- README.md | 2 +- build.sbt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 033abdc..df464dd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: fail-fast: false matrix: java: [8, 11, 17] - scala: [2.12.15, 2.13.7] + scala: [2.12.15, 2.13.8] runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 diff --git a/README.md b/README.md index cac98ec..7884772 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ to match your project’s Scala binary version): org.scala-lang scala-reflect - 2.13.7 + 2.13.8 provided ``` diff --git a/build.sbt b/build.sbt index 1295811..ee58c12 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ val sharedSettings = ScalaModulePlugin.scalaModuleSettings ++ ScalaModulePlugin. name := "scala-async", scalaModuleAutomaticModuleName := Some("scala.async"), - crossScalaVersions := Seq("2.13.7", "2.12.15"), + crossScalaVersions := Seq("2.13.8", "2.12.15"), scalaVersion := crossScalaVersions.value.head, OsgiKeys.exportPackage := Seq(s"scala.async.*;version=${version.value}"), From 9d0c96c610ca39ad54cfbaaca7b536ead56641ea Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 2 Feb 2022 07:53:13 +0100 Subject: [PATCH 27/93] Update sbt to 1.6.2 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 3161d21..c8fcab5 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.6.1 +sbt.version=1.6.2 From cf8ee3779506f516d35f7fcb2ada0dfe4f33ee2f Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 14 Feb 2022 15:28:11 +0100 Subject: [PATCH 28/93] Update sbt-scalajs, scalajs-compiler, ... to 1.9.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 9bd6506..150ee4d 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,3 +1,3 @@ addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "3.0.1") -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.8.0") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.9.0") addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.1.0") From fd7e189f5e82f378be6a4159368db0bd6b9b1547 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 22 Mar 2022 19:21:38 +0100 Subject: [PATCH 29/93] Update sbt-scalajs-crossproject to 1.2.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 150ee4d..db8ce81 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,3 +1,3 @@ addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "3.0.1") addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.9.0") -addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.1.0") +addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.2.0") From 0f56a07cfffd8b097777e7ce8e25221593545c7b Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 5 Apr 2022 01:15:08 +0200 Subject: [PATCH 30/93] Update sbt-scalajs, scalajs-compiler, ... to 1.10.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index db8ce81..699a8e7 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,3 +1,3 @@ addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "3.0.1") -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.9.0") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.10.0") addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.2.0") From 88ce8e1b61e3443a979be0ae57d90cb3664b6a05 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 28 Jun 2022 22:39:57 +0000 Subject: [PATCH 31/93] Update scala-library, scala-reflect to 2.12.16 --- .github/workflows/ci.yml | 2 +- build.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index df464dd..8a8013a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: fail-fast: false matrix: java: [8, 11, 17] - scala: [2.12.15, 2.13.8] + scala: [2.12.16, 2.13.8] runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 diff --git a/build.sbt b/build.sbt index ee58c12..f19622a 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ val sharedSettings = ScalaModulePlugin.scalaModuleSettings ++ ScalaModulePlugin. name := "scala-async", scalaModuleAutomaticModuleName := Some("scala.async"), - crossScalaVersions := Seq("2.13.8", "2.12.15"), + crossScalaVersions := Seq("2.13.8", "2.12.16"), scalaVersion := crossScalaVersions.value.head, OsgiKeys.exportPackage := Seq(s"scala.async.*;version=${version.value}"), From a3fbe2dbc30e9f9a8128aaa72760acce114b75bf Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Tue, 12 Jul 2022 15:45:15 +0200 Subject: [PATCH 32/93] Update sbt to 1.7.1 (#304) --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index c8fcab5..22af262 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.6.2 +sbt.version=1.7.1 From 336e7f1cd7a18f533cbdbbfa50a2b91bb1d7bdc8 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Tue, 12 Jul 2022 15:45:24 +0200 Subject: [PATCH 33/93] Update sbt-scalajs, scalajs-compiler, ... to 1.10.1 (#301) --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 699a8e7..79a7fd0 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,3 +1,3 @@ addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "3.0.1") -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.10.0") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.10.1") addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.2.0") From 257b11244435f666fdb81c67ba427f8ea542f5ab Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 15 Oct 2022 09:33:30 +0000 Subject: [PATCH 34/93] Update scala-library, scala-reflect to 2.13.10 --- .github/workflows/ci.yml | 2 +- build.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8a8013a..dee3f4c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: fail-fast: false matrix: java: [8, 11, 17] - scala: [2.12.16, 2.13.8] + scala: [2.12.16, 2.13.10] runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 diff --git a/build.sbt b/build.sbt index f19622a..c1905e6 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ val sharedSettings = ScalaModulePlugin.scalaModuleSettings ++ ScalaModulePlugin. name := "scala-async", scalaModuleAutomaticModuleName := Some("scala.async"), - crossScalaVersions := Seq("2.13.8", "2.12.16"), + crossScalaVersions := Seq("2.13.10", "2.12.16"), scalaVersion := crossScalaVersions.value.head, OsgiKeys.exportPackage := Seq(s"scala.async.*;version=${version.value}"), From 2d390b92001ed96a66f7ba90ccec646359b4eed4 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 15 Oct 2022 09:33:33 +0000 Subject: [PATCH 35/93] Update sbt to 1.7.2 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 22af262..563a014 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.7.1 +sbt.version=1.7.2 From 3333dd69904a85ff96b926dcd999f55448fa354f Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Mon, 24 Oct 2022 20:05:58 +0200 Subject: [PATCH 36/93] Update sbt-scalajs, scalajs-compiler, ... to 1.11.0 (#305) --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 79a7fd0..d45cccd 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,3 +1,3 @@ addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "3.0.1") -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.10.1") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.11.0") addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.2.0") From 7a8644f9a717a95d925d58b1ef46074f0d8d6c1a Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Mon, 24 Oct 2022 20:06:18 +0200 Subject: [PATCH 37/93] Update scala-library, scala-reflect to 2.12.17 (#306) --- .github/workflows/ci.yml | 2 +- build.sbt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8a8013a..a5bf4b1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: fail-fast: false matrix: java: [8, 11, 17] - scala: [2.12.16, 2.13.8] + scala: [2.12.17, 2.13.8] runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 diff --git a/build.sbt b/build.sbt index f19622a..7f2be68 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ val sharedSettings = ScalaModulePlugin.scalaModuleSettings ++ ScalaModulePlugin. name := "scala-async", scalaModuleAutomaticModuleName := Some("scala.async"), - crossScalaVersions := Seq("2.13.8", "2.12.16"), + crossScalaVersions := Seq("2.13.8", "2.12.17"), scalaVersion := crossScalaVersions.value.head, OsgiKeys.exportPackage := Seq(s"scala.async.*;version=${version.value}"), From 15f9129ace4089f5ffed183e24cbf7ce1c47fb84 Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Mon, 24 Oct 2022 20:07:37 +0200 Subject: [PATCH 38/93] avoid repetition of Scala version numbers using recently added sbt feature --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 46b4aad..11d0ff5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: fail-fast: false matrix: java: [8, 11, 17] - scala: [2.12.17, 2.13.10] + scala: [2.12.x, 2.13.x] runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 From 3c661de7ad687584b17aa5536b0203fa59fffd3b Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sun, 6 Nov 2022 21:26:16 +0000 Subject: [PATCH 39/93] Update sbt to 1.7.3 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 563a014..6a9f038 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.7.2 +sbt.version=1.7.3 From dafb4f649748f8c815ef205ad35e08872773350c Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sun, 20 Nov 2022 19:36:05 +0000 Subject: [PATCH 40/93] Update sbt to 1.8.0 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 6a9f038..8b9a0b0 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.7.3 +sbt.version=1.8.0 From 2ac008cc4c7652237a4f126b14084d518052c90f Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 26 Nov 2022 19:43:15 +0000 Subject: [PATCH 41/93] Update sbt-scalajs, scalajs-compiler, ... to 1.12.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index d45cccd..7b9da2b 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,3 +1,3 @@ addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "3.0.1") -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.11.0") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.12.0") addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.2.0") From d3bf1d7ac60cd22240580532cefca7ecf97f6040 Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Fri, 6 Jan 2023 07:15:26 -0800 Subject: [PATCH 42/93] copyright 2023 (#312) --- NOTICE | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/NOTICE b/NOTICE index 6923059..7d41557 100644 --- a/NOTICE +++ b/NOTICE @@ -1,6 +1,6 @@ Scala async -Copyright (c) 2012-2022 EPFL -Copyright (c) 2012-2022 Lightbend, Inc. +Copyright (c) 2012-2023 EPFL +Copyright (c) 2012-2023 Lightbend, Inc. Scala includes software developed at LAMP/EPFL (https://lamp.epfl.ch/) and From be0c327af135d3b2c6252d957173972911522810 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Fri, 6 Jan 2023 16:15:37 +0100 Subject: [PATCH 43/93] Update sbt to 1.8.2 (#313) --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 8b9a0b0..46e43a9 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.8.0 +sbt.version=1.8.2 From 1e9ff1a2a6a8a662c6afd6668da016432f9990db Mon Sep 17 00:00:00 2001 From: Yadu Krishnan Date: Thu, 16 Feb 2023 06:38:02 +0100 Subject: [PATCH 44/93] Updated version number in the README (#315) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7884772..5678bac 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ As of scala-async 1.0, Scala 2.12.12+ or 2.13.3+ are required. #### SBT Example ```scala -libraryDependencies += "org.scala-lang.modules" %% "scala-async" % "0.10.0" +libraryDependencies += "org.scala-lang.modules" %% "scala-async" % "1.0.1" libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value % Provided ``` @@ -24,7 +24,7 @@ to match your project’s Scala binary version): org.scala-lang.modules scala-async_2.13 - 1.0.0 + 1.0.1 org.scala-lang From 8a6f91d8a20f9b3761063dfbf2b3a71a6606f6c4 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Thu, 16 Feb 2023 06:38:23 +0100 Subject: [PATCH 45/93] Update sbt-scalajs, scalajs-compiler, ... to 1.13.0 (#314) --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 7b9da2b..3ad3dee 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,3 +1,3 @@ addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "3.0.1") -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.12.0") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.0") addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.2.0") From c3626ae03f84b69fed8967113f4585a82fb42dcc Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 7 Apr 2023 17:02:38 +0000 Subject: [PATCH 46/93] Update sbt-scalajs-crossproject to 1.3.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 3ad3dee..774cea5 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,3 +1,3 @@ addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "3.0.1") addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.0") -addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.2.0") +addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.0") From d2e637bd7228b972af8c0c6e36df630c6807e21c Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 11 Apr 2023 17:58:10 +0000 Subject: [PATCH 47/93] Update sbt-scalajs, scalajs-compiler, ... to 1.13.1 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 774cea5..2cc3fbf 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,3 +1,3 @@ addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "3.0.1") -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.0") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.1") addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.0") From 55c4402b047f1a663a5962ac1955d037218a6698 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 17 Apr 2023 20:17:12 +0000 Subject: [PATCH 48/93] Update sbt-scalajs-crossproject to 1.3.1 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 2cc3fbf..aef418d 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,3 +1,3 @@ addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "3.0.1") addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.1") -addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.0") +addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.1") From fa6974794d2360e2d0bbafe9ec025a9004f66b2f Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 25 May 2023 08:49:24 +0000 Subject: [PATCH 49/93] Update sbt to 1.8.3 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 46e43a9..72413de 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.8.2 +sbt.version=1.8.3 From be8f496b89a8ade08cf09db2251888e43cdda11d Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 3 Jun 2023 03:33:25 +0000 Subject: [PATCH 50/93] Update sbt to 1.9.0 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 72413de..40b3b8e 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.8.3 +sbt.version=1.9.0 From c0b0617d6877d9253396ba4008136bd87cadb888 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Fri, 16 Jun 2023 02:25:53 +0200 Subject: [PATCH 51/93] Update scala-library, scala-reflect to 2.12.18 (#322) --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 148c26e..010668e 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ val sharedSettings = ScalaModulePlugin.scalaModuleSettings ++ ScalaModulePlugin. name := "scala-async", scalaModuleAutomaticModuleName := Some("scala.async"), - crossScalaVersions := Seq("2.13.10", "2.12.17"), + crossScalaVersions := Seq("2.13.10", "2.12.18"), scalaVersion := crossScalaVersions.value.head, OsgiKeys.exportPackage := Seq(s"scala.async.*;version=${version.value}"), From e636e1fb2fcb795c18148e33ecb7487fc23d4fc4 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Wed, 21 Jun 2023 02:46:47 +0200 Subject: [PATCH 52/93] Update scala-library, scala-reflect to 2.13.11 (#323) Co-authored-by: Seth Tisue --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 010668e..0feb8f0 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ val sharedSettings = ScalaModulePlugin.scalaModuleSettings ++ ScalaModulePlugin. name := "scala-async", scalaModuleAutomaticModuleName := Some("scala.async"), - crossScalaVersions := Seq("2.13.10", "2.12.18"), + crossScalaVersions := Seq("2.13.11", "2.12.18"), scalaVersion := crossScalaVersions.value.head, OsgiKeys.exportPackage := Seq(s"scala.async.*;version=${version.value}"), From a6f8ca19a5471fca108507c2f42fe83233d558c4 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 30 Jun 2023 23:50:18 +0000 Subject: [PATCH 53/93] Update sbt to 1.9.1 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 40b3b8e..3c0b78a 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.9.0 +sbt.version=1.9.1 From 0777d04cd8418a0cbbdfabd0c47bc31b15ad9897 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Thu, 13 Jul 2023 00:51:28 +0200 Subject: [PATCH 54/93] Update sbt-scalajs, scalajs-compiler, ... to 1.13.2 (#324) --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index aef418d..ab00078 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,3 +1,3 @@ addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "3.0.1") -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.1") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.2") addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.1") From 63388b0422af5193ccc26ea9e60b3decd19a7c50 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 13 Jul 2023 00:00:04 +0000 Subject: [PATCH 55/93] Update sbt to 1.9.2 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 3c0b78a..875b706 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.9.1 +sbt.version=1.9.2 From dbf182a434aab4071c68f30a06f6f4388df5ead0 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Thu, 27 Jul 2023 17:01:27 +0200 Subject: [PATCH 56/93] Update sbt to 1.9.3 (#329) --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 875b706..52413ab 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.9.2 +sbt.version=1.9.3 From 0260ad37cf61be5f6628223b79c66cc364840e32 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Thu, 27 Jul 2023 17:01:36 +0200 Subject: [PATCH 57/93] Update sbt-scala-module to 3.1.0 (#327) --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index ab00078..a0f68e7 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,3 +1,3 @@ -addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "3.0.1") +addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "3.1.0") addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.2") addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.1") From 465614112416b6c4c1193119f34840fa60ca7610 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Thu, 27 Jul 2023 17:01:46 +0200 Subject: [PATCH 58/93] Update sbt-scalajs-crossproject to 1.3.2 (#326) --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index a0f68e7..7700085 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,3 +1,3 @@ addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "3.1.0") addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.2") -addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.1") +addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2") From 10c59053d0d5d558185a2d51abe4b6e05b0350e2 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 26 Aug 2023 05:20:03 +0000 Subject: [PATCH 59/93] Update sbt to 1.9.4 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 52413ab..3040987 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.9.3 +sbt.version=1.9.4 From 050ef4ad118f7afe4a746cdd908f636790e19e26 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 18 Sep 2023 21:58:12 +0000 Subject: [PATCH 60/93] Update sbt to 1.9.6 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 3040987..2743082 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.9.4 +sbt.version=1.9.6 From 44bf6d16f8b63a31079dde0dfff8776266525991 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 26 Sep 2023 18:53:56 +0000 Subject: [PATCH 61/93] Update sbt-scalajs, scalajs-compiler, ... to 1.14.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 7700085..50fdd85 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,3 +1,3 @@ addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "3.1.0") -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.2") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.14.0") addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2") From 8e7b83ca19520dbc14a226a2d52983a0818c3001 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 13 Sep 2023 02:48:40 +0000 Subject: [PATCH 62/93] Update scala-library, scala-reflect to 2.13.12 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 0feb8f0..269ca5f 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ val sharedSettings = ScalaModulePlugin.scalaModuleSettings ++ ScalaModulePlugin. name := "scala-async", scalaModuleAutomaticModuleName := Some("scala.async"), - crossScalaVersions := Seq("2.13.11", "2.12.18"), + crossScalaVersions := Seq("2.13.12", "2.12.18"), scalaVersion := crossScalaVersions.value.head, OsgiKeys.exportPackage := Seq(s"scala.async.*;version=${version.value}"), From 118c79dd0efe78dbf21125a501b162f47fc3d671 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 25 Oct 2023 05:00:02 +0000 Subject: [PATCH 63/93] Update sbt to 1.9.7 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 2743082..e8a1e24 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.9.6 +sbt.version=1.9.7 From 0779d4e3d78e4fdad2f69eee28d7f7d054bf5a62 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 13 Jan 2024 09:37:04 +0000 Subject: [PATCH 64/93] Update sbt to 1.9.8 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index e8a1e24..abbbce5 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.9.7 +sbt.version=1.9.8 From 5b1fa6056d95fcec95f3fd22e830ba763a5766a0 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 13 Jan 2024 09:37:02 +0000 Subject: [PATCH 65/93] Update sbt-scalajs, scalajs-compiler, ... to 1.15.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 50fdd85..cf8afd9 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,3 +1,3 @@ addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "3.1.0") -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.14.0") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.15.0") addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2") From 9b43d5c5d50fb3cb5dcc756fcbdba1a1b2e31438 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 24 Feb 2024 00:04:37 +0000 Subject: [PATCH 66/93] Update sbt to 1.9.9 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index abbbce5..04267b1 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.9.8 +sbt.version=1.9.9 From 08d6670f5e94ad52fcd9b65a8a49afc51bf75d69 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Thu, 28 Mar 2024 17:38:49 +0100 Subject: [PATCH 67/93] Update scala-library, scala-reflect to 2.13.13 (#339) --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 269ca5f..257c310 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ val sharedSettings = ScalaModulePlugin.scalaModuleSettings ++ ScalaModulePlugin. name := "scala-async", scalaModuleAutomaticModuleName := Some("scala.async"), - crossScalaVersions := Seq("2.13.12", "2.12.18"), + crossScalaVersions := Seq("2.13.13", "2.12.18"), scalaVersion := crossScalaVersions.value.head, OsgiKeys.exportPackage := Seq(s"scala.async.*;version=${version.value}"), From cd13029497ada97c772562c20cfbc4eb58a7d669 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Thu, 28 Mar 2024 17:46:46 +0100 Subject: [PATCH 68/93] Update sbt-scalajs, scalajs-compiler, ... to 1.16.0 (#340) --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index cf8afd9..43e027c 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,3 +1,3 @@ addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "3.1.0") -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.15.0") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0") addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2") From 0f34d5508a1f5e6ab54b03438ed3acbbd117f9c3 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Thu, 28 Mar 2024 17:50:03 +0100 Subject: [PATCH 69/93] Update scala-library, scala-reflect to 2.12.19 (#338) Co-authored-by: Seth Tisue --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 257c310..cf65027 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ val sharedSettings = ScalaModulePlugin.scalaModuleSettings ++ ScalaModulePlugin. name := "scala-async", scalaModuleAutomaticModuleName := Some("scala.async"), - crossScalaVersions := Seq("2.13.13", "2.12.18"), + crossScalaVersions := Seq("2.13.13", "2.12.19"), scalaVersion := crossScalaVersions.value.head, OsgiKeys.exportPackage := Seq(s"scala.async.*;version=${version.value}"), From d12bc95db2b9d51be805dbb623ecfab2a480c2ac Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 8 May 2024 05:59:31 +0000 Subject: [PATCH 70/93] Update sbt to 1.10.0 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 04267b1..081fdbb 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.9.9 +sbt.version=1.10.0 From eef60c2e9cd2187a56d8eb5394ad9bbddfb7ea3b Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Mon, 24 Jun 2024 23:12:05 +0200 Subject: [PATCH 71/93] Update scala-library, scala-reflect to 2.13.14 (#341) --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index cf65027..ee5cd1d 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ val sharedSettings = ScalaModulePlugin.scalaModuleSettings ++ ScalaModulePlugin. name := "scala-async", scalaModuleAutomaticModuleName := Some("scala.async"), - crossScalaVersions := Seq("2.13.13", "2.12.19"), + crossScalaVersions := Seq("2.13.14", "2.12.19"), scalaVersion := crossScalaVersions.value.head, OsgiKeys.exportPackage := Seq(s"scala.async.*;version=${version.value}"), From 8583001551e994d3f9e117b4e2e4d22246f8c1ce Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 10 Jul 2024 20:41:42 +0000 Subject: [PATCH 72/93] Update sbt to 1.10.1 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 081fdbb..ee4c672 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.10.0 +sbt.version=1.10.1 From 3c17a8c0cfefa9b48b8346089978bdf4f8496570 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 16 Sep 2024 18:56:15 +0000 Subject: [PATCH 73/93] Update sbt to 1.10.2 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index ee4c672..0b699c3 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.10.1 +sbt.version=1.10.2 From 6966226eabeeabc2d215d7b8d85b84b4496e65ba Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 6 Sep 2024 18:08:45 +0000 Subject: [PATCH 74/93] Update scala-library, scala-reflect to 2.12.20 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index ee5cd1d..6102204 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ val sharedSettings = ScalaModulePlugin.scalaModuleSettings ++ ScalaModulePlugin. name := "scala-async", scalaModuleAutomaticModuleName := Some("scala.async"), - crossScalaVersions := Seq("2.13.14", "2.12.19"), + crossScalaVersions := Seq("2.13.14", "2.12.20"), scalaVersion := crossScalaVersions.value.head, OsgiKeys.exportPackage := Seq(s"scala.async.*;version=${version.value}"), From f58683f3d047314bfbcfda15950d31fddefa00ec Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 28 Sep 2024 23:45:07 +0000 Subject: [PATCH 75/93] Update sbt-scalajs, scalajs-compiler, ... to 1.17.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 43e027c..e75f562 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,3 +1,3 @@ addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "3.1.0") -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.17.0") addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2") From bb0380a78d88997202f1ca540b44e04a386005a3 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sun, 20 Oct 2024 21:55:44 +0000 Subject: [PATCH 76/93] Update sbt, scripted-plugin to 1.10.3 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 0b699c3..bc73906 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.10.2 +sbt.version=1.10.3 From 8a00171cfd6718ea051530a252593a020fd15bec Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Sat, 26 Oct 2024 21:45:13 +0200 Subject: [PATCH 77/93] Update scala-library, scala-reflect to 2.13.15 (#346) --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 6102204..8fe3891 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ val sharedSettings = ScalaModulePlugin.scalaModuleSettings ++ ScalaModulePlugin. name := "scala-async", scalaModuleAutomaticModuleName := Some("scala.async"), - crossScalaVersions := Seq("2.13.14", "2.12.20"), + crossScalaVersions := Seq("2.13.15", "2.12.20"), scalaVersion := crossScalaVersions.value.head, OsgiKeys.exportPackage := Seq(s"scala.async.*;version=${version.value}"), From 8858e59d814ba5aeeebb88f4c1129a2f6591f3d4 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Sat, 26 Oct 2024 22:00:36 +0200 Subject: [PATCH 78/93] Update sbt-scala-module to 3.2.0 (#348) * Update sbt-scala-module to 3.2.0 * osgi change needed for sbt-scala-module 3.2.0 upgrade --------- Co-authored-by: Seth Tisue --- build.sbt | 1 + project/plugins.sbt | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 8fe3891..5c67ff4 100644 --- a/build.sbt +++ b/build.sbt @@ -22,6 +22,7 @@ lazy val proj = crossProject(JSPlatform, JVMPlatform) .crossType(CrossType.Pure) .in(file(".")) .settings(sharedSettings) + .jvmEnablePlugins(SbtOsgi) // until we have actually published for Scala.js. this is also why, // for now, release.yml does just `proj/versionCheck` instead of `versionCheck` .jvmSettings(versionPolicyIntention := Compatibility.BinaryAndSourceCompatible) diff --git a/project/plugins.sbt b/project/plugins.sbt index e75f562..699b7f7 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,3 +1,3 @@ -addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "3.1.0") +addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "3.2.0") addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.17.0") addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2") From e4ab5ea1426d355aa81f6618996ad22aa3f0375b Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 28 Oct 2024 19:38:01 +0000 Subject: [PATCH 79/93] Update sbt, scripted-plugin to 1.10.4 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index bc73906..09feeee 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.10.3 +sbt.version=1.10.4 From 8edeb0ffd3a91413e08e3f6cb4e6c7bddef11058 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 6 Nov 2024 01:57:34 +0000 Subject: [PATCH 80/93] Update sbt, scripted-plugin to 1.10.5 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 09feeee..db1723b 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.10.4 +sbt.version=1.10.5 From d85326da74055fb68667959cebda346dce884969 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 2 Dec 2024 01:31:09 +0000 Subject: [PATCH 81/93] Update sbt, scripted-plugin to 1.10.6 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index db1723b..e88a0d8 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.10.5 +sbt.version=1.10.6 From cc29e07b2863da85734eb63d7dcc41e99c0c2476 Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Wed, 18 Dec 2024 12:29:04 -0800 Subject: [PATCH 82/93] add CLA check better late than never --- .github/workflows/cla.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/cla.yml diff --git a/.github/workflows/cla.yml b/.github/workflows/cla.yml new file mode 100644 index 0000000..3549ded --- /dev/null +++ b/.github/workflows/cla.yml @@ -0,0 +1,11 @@ +name: "Check Scala CLA" +on: + pull_request: +jobs: + cla-check: + runs-on: ubuntu-latest + steps: + - name: Verify CLA + uses: scala/cla-checker@v1 + with: + author: ${{ github.event.pull_request.user.login }} From 052e809975c12db7129a4b23fc3340ef510b14ca Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Wed, 18 Dec 2024 14:28:42 -0800 Subject: [PATCH 83/93] fix CI for new Ubuntu image --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 11d0ff5..e01e440 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,5 +21,6 @@ jobs: with: distribution: temurin java-version: ${{matrix.java}} + - uses: sbt/setup-sbt@v1 - name: Test run: sbt ++${{matrix.scala}} test proj/headerCheck package From eea0fab02d6a8525274bd72ea9bfc03e1622fa56 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 25 Dec 2024 22:16:38 +0000 Subject: [PATCH 84/93] Update sbt, scripted-plugin to 1.10.7 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index e88a0d8..73df629 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.10.6 +sbt.version=1.10.7 From 8dcc25914dc291dc4509c9634179cc4a82877113 Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Wed, 8 Jan 2025 07:57:37 -0800 Subject: [PATCH 85/93] Update sbt-scala-module to 3.2.2 --- project/plugins.sbt | 2 +- src/main/scala/scala/async/Async.scala | 2 +- src/main/scala/scala/async/FutureStateMachine.scala | 2 +- src/test/scala/scala/async/ExceptionalTest.scala | 2 +- src/test/scala/scala/async/FutureSpec.scala | 2 +- src/test/scala/scala/async/SmokeTest.scala | 2 +- src/test/scala/scala/async/TestUtil.scala | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 699b7f7..4b4ee1f 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,3 +1,3 @@ -addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "3.2.0") +addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "3.2.2") addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.17.0") addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2") diff --git a/src/main/scala/scala/async/Async.scala b/src/main/scala/scala/async/Async.scala index b4399e1..b592f0a 100644 --- a/src/main/scala/scala/async/Async.scala +++ b/src/main/scala/scala/async/Async.scala @@ -1,7 +1,7 @@ /* * Scala (https://www.scala-lang.org) * - * Copyright EPFL and Lightbend, Inc. + * Copyright EPFL and Lightbend, Inc. dba Akka * * Licensed under Apache License 2.0 * (http://www.apache.org/licenses/LICENSE-2.0). diff --git a/src/main/scala/scala/async/FutureStateMachine.scala b/src/main/scala/scala/async/FutureStateMachine.scala index 4c65190..8b8c5cf 100644 --- a/src/main/scala/scala/async/FutureStateMachine.scala +++ b/src/main/scala/scala/async/FutureStateMachine.scala @@ -1,7 +1,7 @@ /* * Scala (https://www.scala-lang.org) * - * Copyright EPFL and Lightbend, Inc. + * Copyright EPFL and Lightbend, Inc. dba Akka * * Licensed under Apache License 2.0 * (http://www.apache.org/licenses/LICENSE-2.0). diff --git a/src/test/scala/scala/async/ExceptionalTest.scala b/src/test/scala/scala/async/ExceptionalTest.scala index fcdf5c1..1caf134 100644 --- a/src/test/scala/scala/async/ExceptionalTest.scala +++ b/src/test/scala/scala/async/ExceptionalTest.scala @@ -1,7 +1,7 @@ /* * Scala (https://www.scala-lang.org) * - * Copyright EPFL and Lightbend, Inc. + * Copyright EPFL and Lightbend, Inc. dba Akka * * Licensed under Apache License 2.0 * (http://www.apache.org/licenses/LICENSE-2.0). diff --git a/src/test/scala/scala/async/FutureSpec.scala b/src/test/scala/scala/async/FutureSpec.scala index 262d748..9713b81 100644 --- a/src/test/scala/scala/async/FutureSpec.scala +++ b/src/test/scala/scala/async/FutureSpec.scala @@ -1,7 +1,7 @@ /* * Scala (https://www.scala-lang.org) * - * Copyright EPFL and Lightbend, Inc. + * Copyright EPFL and Lightbend, Inc. dba Akka * * Licensed under Apache License 2.0 * (http://www.apache.org/licenses/LICENSE-2.0). diff --git a/src/test/scala/scala/async/SmokeTest.scala b/src/test/scala/scala/async/SmokeTest.scala index 4804893..b04dbdb 100644 --- a/src/test/scala/scala/async/SmokeTest.scala +++ b/src/test/scala/scala/async/SmokeTest.scala @@ -1,7 +1,7 @@ /* * Scala (https://www.scala-lang.org) * - * Copyright EPFL and Lightbend, Inc. + * Copyright EPFL and Lightbend, Inc. dba Akka * * Licensed under Apache License 2.0 * (http://www.apache.org/licenses/LICENSE-2.0). diff --git a/src/test/scala/scala/async/TestUtil.scala b/src/test/scala/scala/async/TestUtil.scala index 11bab02..5762467 100644 --- a/src/test/scala/scala/async/TestUtil.scala +++ b/src/test/scala/scala/async/TestUtil.scala @@ -1,7 +1,7 @@ /* * Scala (https://www.scala-lang.org) * - * Copyright EPFL and Lightbend, Inc. + * Copyright EPFL and Lightbend, Inc. dba Akka * * Licensed under Apache License 2.0 * (http://www.apache.org/licenses/LICENSE-2.0). From 468ba2fedb872e4f1c97e7abb7b237463a3c5d63 Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Wed, 8 Jan 2025 07:57:47 -0800 Subject: [PATCH 86/93] copyright 2025 --- NOTICE | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/NOTICE b/NOTICE index 7d41557..c0e32e6 100644 --- a/NOTICE +++ b/NOTICE @@ -1,10 +1,10 @@ Scala async -Copyright (c) 2012-2023 EPFL -Copyright (c) 2012-2023 Lightbend, Inc. +Copyright (c) 2012-2025 EPFL +Copyright (c) 2012-2025 Lightbend, Inc. dba Akka Scala includes software developed at LAMP/EPFL (https://lamp.epfl.ch/) and -Lightbend, Inc. (https://www.lightbend.com/). +Akka (https://akka.io/). Licensed under the Apache License, Version 2.0 (the "License"). Unless required by applicable law or agreed to in writing, software From c295e9251e1f1e48ddca699bda4801fc86fc2f3b Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sun, 12 Jan 2025 21:00:46 +0000 Subject: [PATCH 87/93] Update sbt-scalajs, scalajs-compiler, ... to 1.18.1 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 4b4ee1f..90dd8bd 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,3 +1,3 @@ addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "3.2.2") -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.17.0") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.18.1") addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2") From c14e2410e18a70206d044b1deef3e268a9e7f2da Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Mon, 20 Jan 2025 03:35:35 +0100 Subject: [PATCH 88/93] Update scala-library, scala-reflect to 2.13.16 (#358) --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 5c67ff4..94953ef 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ val sharedSettings = ScalaModulePlugin.scalaModuleSettings ++ ScalaModulePlugin. name := "scala-async", scalaModuleAutomaticModuleName := Some("scala.async"), - crossScalaVersions := Seq("2.13.15", "2.12.20"), + crossScalaVersions := Seq("2.13.16", "2.12.20"), scalaVersion := crossScalaVersions.value.head, OsgiKeys.exportPackage := Seq(s"scala.async.*;version=${version.value}"), From 56b9c0e4c876f0d5eb3f1af733d39899be68710c Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 5 Mar 2025 22:42:57 +0000 Subject: [PATCH 89/93] Update sbt, scripted-plugin to 1.10.10 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 73df629..e97b272 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.10.7 +sbt.version=1.10.10 From 87c2ee5d86627dd211b51194225ebff2d8202b3f Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Sun, 9 Mar 2025 23:24:45 +0100 Subject: [PATCH 90/93] Update sbt-scalajs, scalajs-compiler, ... to 1.18.2 (#359) --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 90dd8bd..93a35be 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,3 +1,3 @@ addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "3.2.2") -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.18.1") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.18.2") addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2") From e6e1f0023a96756c4faf616b4c75dbd3fbcfd709 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 18 Mar 2025 00:13:36 +0000 Subject: [PATCH 91/93] Update sbt, scripted-plugin to 1.10.11 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index e97b272..cc68b53 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.10.10 +sbt.version=1.10.11 From c1b05e86c031a27db728dd006d6a107c0eaf535f Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Tue, 22 Apr 2025 18:32:05 +0000 Subject: [PATCH 92/93] Update sbt-scalajs, scalajs-compiler, ... to 1.19.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 93a35be..d228ee3 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,3 +1,3 @@ addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "3.2.2") -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.18.2") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.19.0") addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2") From 81bb434e656cd08b9a30285edfc49d5d915e3d17 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sat, 24 May 2025 20:41:47 +0000 Subject: [PATCH 93/93] Update sbt, scripted-plugin to 1.11.0 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index cc68b53..6520f69 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.10.11 +sbt.version=1.11.0