Skip to content
This repository has been archived by the owner on May 4, 2018. It is now read-only.

Commit

Permalink
2013.08.24, Version 0.11.9 (Unstable)
Browse files Browse the repository at this point in the history
Changes since version 0.11.8:

* fsevents: share FSEventStream between multiple FS watchers, which
  removes a limit on the maximum number of file watchers that can be
  created on OS X. (Fedor Indutny)

* process: the `exit_status` parameter for a uv_process_t's exit
  callback now is an int64_t, and no longer an int. (Bert Belder)

* process: make uv_spawn() return some types of errors immediately on
  windows, instead of passing the error code the the exit callback. This
  brings it on par with libuv's behavior on unix. (Bert Belder)
  • Loading branch information
piscisaureus committed Aug 23, 2013
1 parent 66ae0ff commit a2d29b5
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions ChangeLog
@@ -1,3 +1,19 @@
2013.08.24, Version 0.11.9 (Unstable)

Changes since version 0.11.8:

* fsevents: share FSEventStream between multiple FS watchers, which removes a
limit on the maximum number of file watchers that can be created on OS X.
(Fedor Indutny)

* process: the `exit_status` parameter for a uv_process_t's exit callback now
is an int64_t, and no longer an int. (Bert Belder)

* process: make uv_spawn() return some types of errors immediately on windows,
instead of passing the error code the the exit callback. This brings it on
par with libuv's behavior on unix. (Bert Belder)


2013.08.22, Version 0.11.8 (Unstable), a5260462db80ab0deab6b9e6a8991dd8f5a9a2f8

Changes since version 0.11.7:
Expand Down
2 changes: 1 addition & 1 deletion src/version.c
Expand Up @@ -32,7 +32,7 @@
#define UV_VERSION_MAJOR 0
#define UV_VERSION_MINOR 11
#define UV_VERSION_PATCH 9
#define UV_VERSION_IS_RELEASE 0
#define UV_VERSION_IS_RELEASE 1


#define UV_VERSION ((UV_VERSION_MAJOR << 16) | \
Expand Down

0 comments on commit a2d29b5

Please sign in to comment.