Skip to content

Commit

Permalink
New release v0.4.1 -> Scala.js v0.6.20
Browse files Browse the repository at this point in the history
  • Loading branch information
ldaniels528 committed Oct 3, 2017
1 parent 3dc9328 commit 88691a6
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"

<a name="npm_modules">
#### Third-party Modules
Expand Down Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nodejs-sfs",
"version": "0.4.0",
"version": "0.4.1",
"private": true,
"dependencies": {
"source-map-support": "^0.4.14"
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=0.13.15
sbt.version=0.13.16
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/io/scalajs/nodejs/fs/Fs.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/watchfile.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "scalajs-io",
"version": "0.4.0",
"version": "0.4.1",
"private": true,
"dependencies": {
"async": "^2.0.1",
Expand Down

0 comments on commit 88691a6

Please sign in to comment.