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

Commit fbcbd21

Browse files
authored
Merge pull request #304 from exoego/release
Releasing v0.12.0
2 parents 9b95c91 + d9b0d60 commit fbcbd21

File tree

5 files changed

+21
-21
lines changed

5 files changed

+21
-21
lines changed

.node-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v14.3.0
1+
v14.7.0

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jdk:
1010

1111
env:
1212
matrix:
13-
- TRAVIS_NODE_VERSION="14.3.0"
14-
- TRAVIS_NODE_VERSION="12.16.3"
15-
- TRAVIS_NODE_VERSION="10.20.1"
13+
- TRAVIS_NODE_VERSION="14.7.0"
14+
- TRAVIS_NODE_VERSION="12.18.3"
15+
- TRAVIS_NODE_VERSION="10.22.0"
1616

1717
script:
1818
- SCALAJS_VERSION="0.6.33" sbt ++$TRAVIS_SCALA_VERSION test

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# scala-js-nodejs
22

3-
Scala.js type facades for Node.js v10 and v12.
3+
Scala.js type facades for Node.js v10, v12 and v14.
44

55
## Support matrix
66

7-
| | ScalaJS 0.6.28+ | ScalaJS 1.x |
8-
| ---------- | :----------------: | :-----------------------------: |
9-
| Scala 2.13 | :heavy_check_mark: | :heavy_check_mark: from v0.10.0 |
10-
| Scala 2.12 | :heavy_check_mark: | :heavy_check_mark: from v0.10.0 |
11-
| Scala 2.11 | N/A | N/A |
12-
| Scala 2.10 | N/A | N/A |
7+
| | ScalaJS 0.6.28+ | ScalaJS 1.x |
8+
| ---------- | :-----------------------------------: | :-----------------------------: |
9+
| Scala 2.13 | :heavy_check_mark: (v0.12.0 is final) | :heavy_check_mark: from v0.10.0 |
10+
| Scala 2.12 | :heavy_check_mark: (v0.12.0 is final) | :heavy_check_mark: from v0.10.0 |
11+
| Scala 2.11 | N/A | N/A |
12+
| Scala 2.10 | N/A | N/A |
1313

1414
- :heavy_check_mark: Supported
1515
- :construction: Not supported but planned
@@ -24,10 +24,12 @@ Feel free to open issue/send pull request if you find missing module.
2424
Add below line to your SBT project.
2525

2626
```sbt
27-
// For Node.js v10 LTS
28-
libraryDependencies += "net.exoego" %%% "scala-js-nodejs-v10" % "0.11.0"
29-
// For Node.js v12 (supposed to be next LTS)
30-
libraryDependencies += "net.exoego" %%% "scala-js-nodejs-v12" % "0.11.0"
27+
// For Node.js v10 LTS (Will be dropped on 2021-4-30)
28+
libraryDependencies += "net.exoego" %%% "scala-js-nodejs-v10" % "0.12.0"
29+
// For Node.js v12 LTS
30+
libraryDependencies += "net.exoego" %%% "scala-js-nodejs-v12" % "0.12.0"
31+
// For Node.js v14 LTS
32+
libraryDependencies += "net.exoego" %%% "scala-js-nodejs-v14" % "0.12.0"
3133
```
3234

3335
## Example of code
@@ -105,5 +107,3 @@ for {
105107
## Note
106108

107109
This facade leverages [`@Factory` marcro](https://github.com/exoego/scalajs-types-util#factory-macro) to create highly-optimized factory method without boilerplate.
108-
109-

build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ lazy val core = (project in file("./core"))
2525
libraryDependencies ++= Dependencies.core.value
2626
)
2727

28-
lazy val nodejs_v14 = createNodeVersionSpecificProject("14.3.0")
29-
lazy val nodejs_v12 = createNodeVersionSpecificProject("12.16.3")
30-
lazy val nodejs_v10 = createNodeVersionSpecificProject("10.20.1")
28+
lazy val nodejs_v14 = createNodeVersionSpecificProject("14.7.0")
29+
lazy val nodejs_v12 = createNodeVersionSpecificProject("12.18.3")
30+
lazy val nodejs_v10 = createNodeVersionSpecificProject("10.22.0")
3131

3232
def createNodeVersionSpecificProject(nodeFullVersion: String) = {
3333
val majorVersion = nodeFullVersion.split("\\.")(0)

version.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version in ThisBuild := "0.11.0"
1+
version in ThisBuild := "0.12.0"

0 commit comments

Comments
 (0)