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 #91 from exoego/release-0.5.0
Browse files Browse the repository at this point in the history
Release 0.5.0
  • Loading branch information
exoego committed Feb 18, 2020
2 parents 8bc4d00 + c971e57 commit 780e970
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ It can be found in [aws-sdk-scalajs-facade](https://github.com/exoego/aws-sdk-sc

## Support matrix

| | ScalaJS 0.6.28+ | ScalaJS 1.x |
| ---------- | :----------------------------: | :------------: |
| | ScalaJS 0.6.28+ | ScalaJS 1.x |
| ---------- | :------------------| :------------: |
| Scala 2.13 | :heavy_check_mark: | :construction: |
| Scala 2.12 | :heavy_check_mark: | :construction: |
| Scala 2.11 | N/A | N/A |
| Scala 2.10 | N/A | N/A |
| Scala 2.12 | :heavy_check_mark: | :construction: |
| Scala 2.11 | N/A | N/A |
| Scala 2.10 | N/A | N/A |

- :heavy_check_mark: Supported
- :construction: Not supported but planned
Expand All @@ -26,8 +26,8 @@ It can be found in [aws-sdk-scalajs-facade](https://github.com/exoego/aws-sdk-sc
Add dependency in `build.sbt`.

```sbt
// For Node.js v10
libraryDependencies += "net.exoego" %%% "aws-lambda-scalajs-facade" % "0.3.3"
// For Node.js v12
libraryDependencies += "net.exoego" %%% "aws-lambda-scalajs-facade" % "0.5.0"
// For Node.js v8
libraryDependencies += "net.exoego" %%% "aws-lambda-scalajs-facade-nodejs-v8" % "0.3.3"
```
Expand All @@ -40,12 +40,12 @@ import net.exoego.facade.aws_lambda._

object MyFirstLambda extends APIGatewayProxyHandler {
@js.annotation.JSName("apply")
override def apply(event: APIGatewayEvent, context: Context, callback: Callback[ProxyResult]): Unit = ???
override def apply(event: APIGatewayProxyEvent, context: Context, callback: Callback[APIGatewayProxyResult]): Unit = ???
}

object MyFirstAsyncLambda extends AsyncAPIGatewayProxyHandler {
@js.annotation.JSName("apply")
override def apply(event: APIGatewayEvent, context: Context): js.Promise[APIGatewayProxyResult] = ???
override def apply(event: APIGatewayProxyEvent, context: Context): js.Promise[APIGatewayProxyResult] = ???
}
```

Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "0.4.2-SNAPSHOT"
version in ThisBuild := "0.5.1-SNAPSHOT"

0 comments on commit 780e970

Please sign in to comment.