Skip to content
This repository has been archived by the owner on Jul 30, 2024. It is now read-only.

Commit

Permalink
Merge pull request #180 from exoego/releases
Browse files Browse the repository at this point in the history
Releases v0.29.0-v2.624.0
  • Loading branch information
exoego committed Feb 23, 2020
2 parents 62eb0f4 + ab5de1e commit cb122ed
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 19 deletions.
26 changes: 8 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down
8 changes: 8 additions & 0 deletions scripts/release.sh
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "0.28.1-SNAPSHOT"
version in ThisBuild := "0.29.0-v2.624.0"

0 comments on commit cb122ed

Please sign in to comment.