diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 825a55ea..209ac526 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,12 +8,13 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - java: [ '1.8', '11', '17' ] + java: [ '8', '11', '17' ] name: Test using Java ${{ matrix.java }} steps: - uses: actions/checkout@v2 - - name: Setup Scala and Java - uses: olafurpg/setup-scala@v13 + - name: Setup Java + uses: actions/setup-java@v2 with: - java-version: ${{ matrix.java }} + distribution: 'adopt' + java-version: ${{ matrix.java }} - run: sbt +test diff --git a/README.md b/README.md index 0967376f..7d014dca 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ All available versions can be seen at the [Maven Repository](https://mvnreposito | 2.11.x | ✅ | ✅ | ✅ | | 2.12.x | ✅ | ✅ | ✅ | | 2.13.x | ✅ | ✅ | ✅ | -| 3.0.x | ✅ | ✅ | n/a | +| 3.x.x | ✅ | ✅ | n/a | ## Usage and Help [![Scaladoc](https://www.javadoc.io/badge/org.ekrich/sconfig_2.11.svg?label=scaladoc)](https://www.javadoc.io/doc/org.ekrich/sconfig_2.11) @@ -110,6 +110,7 @@ At a high level, the process is as follows: ## Versions +Release [1.4.7](https://github.com/ekrich/sconfig/releases/tag/v1.4.7) - (2022-01-03)
Release [1.4.6](https://github.com/ekrich/sconfig/releases/tag/v1.4.6) - (2021-12-06)
Release [1.4.5](https://github.com/ekrich/sconfig/releases/tag/v1.4.5) - (2021-10-08)
Release [1.4.4](https://github.com/ekrich/sconfig/releases/tag/v1.4.4) - (2021-05-13)
diff --git a/build.sbt b/build.sbt index b6edcf0e..ba4909b5 100644 --- a/build.sbt +++ b/build.sbt @@ -55,6 +55,7 @@ ThisBuild / scalaVersion := scala212 ThisBuild / crossScalaVersions := versionsBase ThisBuild / versionScheme := Some("early-semver") ThisBuild / mimaFailOnNoPrevious := false +ThisBuild / resolvers += Resolver.sonatypeRepo("snapshots") Compile / packageBin / packageOptions += Package.ManifestAttributes("Automatic-Module-Name" -> "org.ekrich.sconfig") diff --git a/project/plugins.sbt b/project/plugins.sbt index db0aafbc..76a1d11b 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,3 +1,6 @@ +// To test snapshots +resolvers += Resolver.sonatypeRepo("snapshots") + // versions val crossVer = "1.1.0" val scalaJSVersion = "1.8.0" @@ -17,6 +20,3 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % scalaJSVersion) addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.9.33") -// Workaround until Scala.js 1.8.0 released -// See https://github.com/scala-js/scala-js-js-envs/issues/12 -libraryDependencies += "org.scala-js" %% "scalajs-env-nodejs" % "1.2.1"