Skip to content

Commit 69904c8

Browse files
saghultrevnorris
authored andcommitted
deps: update libuv to 1.0.1
PR-URL: nodejs/node-v0.x-archive#8785 Reviewed-by: Trevor Norris <trev.norris@gmail.com>
1 parent bf3e0f4 commit 69904c8

12 files changed

Lines changed: 45 additions & 23 deletions

File tree

deps/uv/AUTHORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,3 +171,5 @@ Mikhail Mukovnikov <yndi@me.com>
171171
Thorsten Lorenz <thlorenz@gmx.de>
172172
Yuri D'Elia <yuri.delia@eurac.edu>
173173
Manos Nikolaidis <manos@shadowrobot.com>
174+
Elijah Andrews <elijah@busbud.com>
175+
Michael Ira Krufky <m.krufky@samsung.com>

deps/uv/CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ through the process.
66

77
### FORK
88

9-
Fork the project [on GitHub](https://github.com/joyent/libuv) and check out
9+
Fork the project [on GitHub](https://github.com/libuv/libuv) and check out
1010
your copy.
1111

1212
```
1313
$ git clone https://github.com/username/libuv.git
1414
$ cd libuv
15-
$ git remote add upstream https://github.com/joyent/libuv.git
15+
$ git remote add upstream https://github.com/libuv/libuv.git
1616
```
1717

1818
Now decide if you want your feature or bug fix to go into the master branch
@@ -160,7 +160,7 @@ feature branch. Post a comment in the pull request afterwards; GitHub does
160160
not send out notifications when you add commits.
161161

162162

163-
[issue tracker]: https://github.com/joyent/libuv/issues
163+
[issue tracker]: https://github.com/libuv/libuv/issues
164164
[libuv mailing list]: http://groups.google.com/group/libuv
165165
[IRC]: http://webchat.freelibuv.net/?channels=libuv
166166
[Google C/C++ style guide]: http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml

deps/uv/ChangeLog

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
1-
2014.11.21, Version 1.0.0 (Stable)
1+
2014.11.27, Version 1.0.1 (Stable), 0a8e81374e861d425b56c45c8599595d848911d2
2+
3+
Changes since version 1.0.0:
4+
5+
* readme: remove Rust from users (Elijah Andrews)
6+
7+
* doc,build,include: update project links (Ben Noordhuis)
8+
9+
* doc: fix typo: Strcutures -> Structures (Michael Ira Krufky)
10+
11+
* unix: fix processing process handles queue (Saúl Ibarra Corretgé)
12+
13+
* win: replace non-ansi characters in source file (Bert Belder)
14+
15+
16+
2014.11.21, Version 1.0.0 (Stable), feb2a9e6947d892f449b2770c4090f7d8c88381b
217

318
Changes since version 1.0.0-rc2:
419

deps/uv/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
libuv is a multi-platform support library with a focus on asynchronous I/O. It
66
was primarily developed for use by [Node.js](http://nodejs.org), but it's also
77
used by [Luvit](http://luvit.io/), [Julia](http://julialang.org/),
8-
[pyuv](https://github.com/saghul/pyuv), and [others](https://github.com/joyent/libuv/wiki/Projects-that-use-libuv).
8+
[pyuv](https://github.com/saghul/pyuv), and [others](https://github.com/libuv/libuv/wiki/Projects-that-use-libuv).
99

1010
## Feature highlights
1111

@@ -77,7 +77,7 @@ Documentation can be browsed online [here](http://docs.libuv.org).
7777
&mdash; An overview of libuv with tutorials.
7878
* [LXJS 2012 talk](http://www.youtube.com/watch?v=nGn60vDSxQ4)
7979
&mdash; High-level introductory talk about libuv.
80-
* [Tests and benchmarks](https://github.com/joyent/libuv/tree/master/test)
80+
* [Tests and benchmarks](https://github.com/libuv/libuv/tree/master/test)
8181
&mdash; API specification and usage examples.
8282
* [libuv-dox](https://github.com/thlorenz/libuv-dox)
8383
&mdash; Documenting types and methods of libuv, mostly by reading uv.h.
@@ -181,5 +181,5 @@ See the [guidelines for contributing][].
181181
[GYP]: http://code.google.com/p/gyp/
182182
[Python]: https://www.python.org/downloads/
183183
[Visual Studio Express 2010]: http://www.microsoft.com/visualstudio/eng/products/visual-studio-2010-express
184-
[guidelines for contributing]: https://github.com/joyent/libuv/blob/master/CONTRIBUTING.md
185-
[libuv_banner]: https://raw.githubusercontent.com/joyent/libuv/master/img/banner.png
184+
[guidelines for contributing]: https://github.com/libuv/libuv/blob/master/CONTRIBUTING.md
185+
[libuv_banner]: https://raw.githubusercontent.com/libuv/libuv/master/img/banner.png

deps/uv/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1414

1515
AC_PREREQ(2.57)
16-
AC_INIT([libuv], [1.0.0], [https://github.com/joyent/libuv/issues])
16+
AC_INIT([libuv], [1.0.1], [https://github.com/libuv/libuv/issues])
1717
AC_CONFIG_MACRO_DIR([m4])
1818
m4_include([m4/libuv-extra-automake-flags.m4])
1919
m4_include([m4/as_case.m4])

deps/uv/docs/src/handle.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
`uv_handle_t` is the base type for all libuv handle types.
88

9-
Strcutures are aligned so that any libuv handle can be cast to `uv_handle_t`.
9+
Structures are aligned so that any libuv handle can be cast to `uv_handle_t`.
1010
All API functions defined here work with any handle type.
1111

1212

deps/uv/docs/src/index.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ was primarily developed for use by `Node.js`_, but it's also used by `Luvit`_,
1111

1212
.. note::
1313
In case you find errors in this documentation you can help by sending
14-
`pull requests <https://github.com/joyent/libuv>`_!
14+
`pull requests <https://github.com/libuv/libuv>`_!
1515

1616
.. _Node.js: http://nodejs.org
1717
.. _Luvit: http://luvit.io
1818
.. _Julia: http://julialang.org
1919
.. _pyuv: https://github.com/saghul/pyuv
20-
.. _others: https://github.com/joyent/libuv/wiki/Projects-that-use-libuv
20+
.. _others: https://github.com/libuv/libuv/wiki/Projects-that-use-libuv
2121

2222

2323
Features
@@ -46,7 +46,7 @@ libuv can be downloaded from `here <http://dist.libuv.org/dist/>`_.
4646
Installation
4747
------------
4848

49-
Installation instructions can be found on `the README <https://github.com/joyent/libuv/blob/master/README.md>`_.
49+
Installation instructions can be found on `the README <https://github.com/libuv/libuv/blob/master/README.md>`_.
5050

5151

5252
Upgrading

deps/uv/docs/src/request.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
`uv_req_t` is the base type for all libuv request types.
88

9-
Strcutures are aligned so that any libuv request can be cast to `uv_req_t`.
9+
Structures are aligned so that any libuv request can be cast to `uv_req_t`.
1010
All API functions defined here work with any request type.
1111

1212

deps/uv/include/uv-version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
#define UV_VERSION_MAJOR 1
3434
#define UV_VERSION_MINOR 0
35-
#define UV_VERSION_PATCH 0
35+
#define UV_VERSION_PATCH 1
3636
#define UV_VERSION_IS_RELEASE 1
3737
#define UV_VERSION_SUFFIX ""
3838

deps/uv/include/uv.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* IN THE SOFTWARE.
2020
*/
2121

22-
/* See https://github.com/joyent/libuv#documentation for documentation. */
22+
/* See https://github.com/libuv/libuv#documentation for documentation. */
2323

2424
#ifndef UV_H
2525
#define UV_H

0 commit comments

Comments
 (0)