Skip to content

Commit 88691a6

Browse files
committed
New release v0.4.1 -> Scala.js v0.6.20
1 parent 3dc9328 commit 88691a6

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ The following core Node.js modules (v7.7.1) have been implemented:
231231
| vm | The vm module provides APIs for compiling and running code within V8 Virtual Machine contexts.|
232232
| zlib | This provides bindings to Gzip/Gunzip, Deflate/Inflate, and DeflateRaw/InflateRaw classes. |
233233

234-
*NOTE*: The SBT artifact for the complete Node.js platform is: "io.scalajs" %%% "nodejs" % "0.4.0"
234+
*NOTE*: The SBT artifact for the complete Node.js platform is: "io.scalajs" %%% "nodejs" % "0.4.1"
235235

236236
<a name="npm_modules">
237237
#### Third-party Modules
@@ -298,7 +298,7 @@ The following Third Party/OSS Node.js (npm) modules have been implemented:
298298
| [winston-daily-rotate-file](https://github.com/scalajs-io/winston-daily-rotate-file) | 1.4.4 | A multi-transport async logging library for Node.js. |
299299
| [xml2js](https://github.com/scalajs-io/xml2js) | 0.4.16 | Simple XML to JavaScript object converter. |
300300

301-
*NOTE*: The full SBT artifact expression is: "io.scalajs.npm" %%% "xxxx" % version (e.g. "io.scalajs.npm" %%% "express" % "0.4.0")
301+
*NOTE*: The full SBT artifact expression is: "io.scalajs.npm" %%% "xxxx" % version (e.g. "io.scalajs.npm" %%% "express" % "0.4.1")
302302

303303
I've provided an example to demonstrate how similar the Scala.js code is to the JavaScript
304304
that it replaces.

build.sbt

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import sbt._
55

66
import scala.language.postfixOps
77

8-
val scalaJsIOVersion = "0.4.0"
8+
val scalaJsIOVersion = "0.4.1"
99
val apiVersion = scalaJsIOVersion
10-
val scalaJsVersion = "2.12.1"
10+
val scalaJsVersion = "2.12.3"
1111

1212
organization := "io.scalajs"
1313

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nodejs-sfs",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"private": true,
55
"dependencies": {
66
"source-map-support": "^0.4.14"

project/build.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=0.13.15
1+
sbt.version=0.13.16

project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Scala.js
22

3-
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.15")
3+
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.20")
44

55
// Code Formatting
66

src/main/scala/io/scalajs/nodejs/fs/Fs.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ trait Fs extends IEventEmitter {
3030
// File Access Constants
3131
//
3232
// The following constants are meant for use with fs.access().
33-
/////////////////////////////////////////////////////////////////////////////////
33+
///////////////////////////////////////////////////////////////////////////////// `
3434

3535
/**
3636
* File is visible to the calling process. This is useful for determining if a file exists, but says

src/test/resources/watchfile.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "scalajs-io",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"private": true,
55
"dependencies": {
66
"async": "^2.0.1",

0 commit comments

Comments
 (0)