Skip to content

Commit

Permalink
Released as v0.3.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
ldaniels528 committed Mar 22, 2017
1 parent 9303e2f commit 6a857fd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
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" % "4.14.1-3")
*NOTE*: The full SBT artifact expression is: "io.scalajs.npm" %%% "xxxx" % version (e.g. "io.scalajs.npm" %%% "express" % "4.14.1-4")

I've provided an example to demonstrate how similar the Scala.js code is to the JavaScript
that it replaces.
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import sbt._

import scala.language.postfixOps

val scalaJsIOVersion = "0.3.0.7"
val scalaJsIOVersion = "0.3.0.8"
val apiVersion = scalaJsIOVersion
val scalaJsVersion = "2.12.1"

Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/io/scalajs/nodejs/fs/ReadStream.scala
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ trait ReadStream extends Readable {
/**
* The number of bytes read so far.
*/
def bytesRead: Double = js.native
def bytesRead: js.UndefOr[Double] = js.native

/**
* The path to the file the stream is reading from as specified in the first argument to fs.createReadStream().
Expand Down

0 comments on commit 6a857fd

Please sign in to comment.