From 3dd4476ee0b3690afce2b9d710e75d2d2fc6783c Mon Sep 17 00:00:00 2001 From: exoego Date: Sun, 23 Feb 2020 17:42:38 +0900 Subject: [PATCH 1/3] Update README --- README.md | 26 ++++++++------------------ 1 file changed, 8 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index 2f27f65c1..55a0bbaa3 100644 --- a/README.md +++ b/README.md @@ -13,20 +13,10 @@ You may find the below peer facades useful when developing app with AWS. ## Getting Started ```sbt -// For Node.js v12 LTS -libraryDependencies += "net.exoego" %%% "aws-sdk-scalajs-facade" % "0.28.0-v2.596.0" - -// For Node.js v10 LTS -libraryDependencies += "net.exoego" %%% "aws-sdk-scalajs-facade" % "0.27.0-v2.571.0" - -// For Node.js v8 LTS (reached end-of-life) -libraryDependencies += "net.exoego" %%% "aws-sdk-scalajs-facade-nodejs-v8" % "0.26.2-v2.524.0" +libraryDependencies += "net.exoego" %%% "aws-sdk-scalajs-facade" % "0.29.0-v2.624.0" ``` -Note) Starting from `0.22.0`, version number includes the version of AWS SDK, as qualifier like `-vN-NNN-N`, -which the facade is built for. - -Note) You may reduce Scala.js's `fastOptJS`/`fullOptJS` time by minimizing dependencies. The all-in-one artifact `aws-sdk-scalajs-facade` includes all AWS facade and quite huge. You may depend only minimum dependencies and gain build performance boost. See [the list of separate artifacts](ARTIFACTS.md). +Note) The all-in-one artifact `aws-sdk-scalajs-facade` includes all AWS facade and quite huge. If you depend only minimum facades, you will gain build performance boost (short `fastOptJS`/`fullOptJS` time). See [the list of separate artifacts](ARTIFACTS.md). ### Using constructor @@ -97,12 +87,12 @@ for { ## Support matrix -| | ScalaJS 0.6.28+ | ScalaJS 1.x | -| ---------- | :----------------------------: | :------------: | -| Scala 2.13 | :heavy_check_mark: from 0.22.0 | :construction: | -| Scala 2.12 | :heavy_check_mark: | :construction: | -| Scala 2.11 | N/A | N/A | -| Scala 2.10 | N/A | N/A | +| | ScalaJS 0.6.32 | ScalaJS 1.0 | +| ---------- | :----------------: | :----------------: | +| Scala 2.13 | :heavy_check_mark: | :heavy_check_mark: | +| Scala 2.12 | :heavy_check_mark: | :heavy_check_mark: | +| Scala 2.11 | N/A | N/A | +| Scala 2.10 | N/A | N/A | - :heavy_check_mark: Supported - :construction: Not supported but planned From 2b5d491a515f9100a64ab9e6a58df34743577810 Mon Sep 17 00:00:00 2001 From: exoego Date: Sun, 23 Feb 2020 17:43:17 +0900 Subject: [PATCH 2/3] Add release script --- scripts/release.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 scripts/release.sh diff --git a/scripts/release.sh b/scripts/release.sh new file mode 100755 index 000000000..72adbae26 --- /dev/null +++ b/scripts/release.sh @@ -0,0 +1,8 @@ +#! /bin/bash + +cat ./version.sbt + +export SCALAJS_VERSION=0.6.32 +sbt clean +publishSigned sonatypeBundleUpload sonatypeReleaseAll +export SCALAJS_VERSION=1.0.0 +sbt clean +publishSigned sonatypeBundleUpload sonatypeReleaseAll From ab5de1ee82eccb948fe5278159db8ba8324603b8 Mon Sep 17 00:00:00 2001 From: exoego Date: Sun, 23 Feb 2020 17:43:43 +0900 Subject: [PATCH 3/3] Releasing 0.29.0-v2.624.0 --- version.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.sbt b/version.sbt index f5cddcade..76dbb92c6 100644 --- a/version.sbt +++ b/version.sbt @@ -1 +1 @@ -version in ThisBuild := "0.28.1-SNAPSHOT" +version in ThisBuild := "0.29.0-v2.624.0"