From 88691a6eaacaaf534d151ccf5eeb52bac0d8f93a Mon Sep 17 00:00:00 2001 From: Lawrence Daniels Date: Mon, 2 Oct 2017 19:31:49 -0700 Subject: [PATCH] New release v0.4.1 -> Scala.js v0.6.20 --- README.md | 4 ++-- build.sbt | 4 ++-- package.json | 2 +- project/build.properties | 2 +- project/plugins.sbt | 2 +- src/main/scala/io/scalajs/nodejs/fs/Fs.scala | 2 +- src/test/resources/watchfile.json | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 465fd8547..d55a8a632 100644 --- a/README.md +++ b/README.md @@ -231,7 +231,7 @@ The following core Node.js modules (v7.7.1) have been implemented: | vm | The vm module provides APIs for compiling and running code within V8 Virtual Machine contexts.| | zlib | This provides bindings to Gzip/Gunzip, Deflate/Inflate, and DeflateRaw/InflateRaw classes. | -*NOTE*: The SBT artifact for the complete Node.js platform is: "io.scalajs" %%% "nodejs" % "0.4.0" +*NOTE*: The SBT artifact for the complete Node.js platform is: "io.scalajs" %%% "nodejs" % "0.4.1" #### Third-party Modules @@ -298,7 +298,7 @@ The following Third Party/OSS Node.js (npm) modules have been implemented: | [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. | | [xml2js](https://github.com/scalajs-io/xml2js) | 0.4.16 | Simple XML to JavaScript object converter. | -*NOTE*: The full SBT artifact expression is: "io.scalajs.npm" %%% "xxxx" % version (e.g. "io.scalajs.npm" %%% "express" % "0.4.0") +*NOTE*: The full SBT artifact expression is: "io.scalajs.npm" %%% "xxxx" % version (e.g. "io.scalajs.npm" %%% "express" % "0.4.1") I've provided an example to demonstrate how similar the Scala.js code is to the JavaScript that it replaces. diff --git a/build.sbt b/build.sbt index acb3387f4..3b112fb1b 100644 --- a/build.sbt +++ b/build.sbt @@ -5,9 +5,9 @@ import sbt._ import scala.language.postfixOps -val scalaJsIOVersion = "0.4.0" +val scalaJsIOVersion = "0.4.1" val apiVersion = scalaJsIOVersion -val scalaJsVersion = "2.12.1" +val scalaJsVersion = "2.12.3" organization := "io.scalajs" diff --git a/package.json b/package.json index 166a4fbe0..91fbd3e38 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nodejs-sfs", - "version": "0.4.0", + "version": "0.4.1", "private": true, "dependencies": { "source-map-support": "^0.4.14" diff --git a/project/build.properties b/project/build.properties index 64317fdae..c091b86ca 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=0.13.15 +sbt.version=0.13.16 diff --git a/project/plugins.sbt b/project/plugins.sbt index 0df61f6d3..dfbdbc169 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,6 +1,6 @@ // Scala.js -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.15") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.20") // Code Formatting diff --git a/src/main/scala/io/scalajs/nodejs/fs/Fs.scala b/src/main/scala/io/scalajs/nodejs/fs/Fs.scala index 51f67db83..c498ec470 100644 --- a/src/main/scala/io/scalajs/nodejs/fs/Fs.scala +++ b/src/main/scala/io/scalajs/nodejs/fs/Fs.scala @@ -30,7 +30,7 @@ trait Fs extends IEventEmitter { // File Access Constants // // The following constants are meant for use with fs.access(). - ///////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////////////////////////// ` /** * File is visible to the calling process. This is useful for determining if a file exists, but says diff --git a/src/test/resources/watchfile.json b/src/test/resources/watchfile.json index b06484513..854e61a5b 100644 --- a/src/test/resources/watchfile.json +++ b/src/test/resources/watchfile.json @@ -1,6 +1,6 @@ { "name": "scalajs-io", - "version": "0.4.0", + "version": "0.4.1", "private": true, "dependencies": { "async": "^2.0.1",