mirror of
https://github.com/libuv/libuv
synced 2025-03-28 21:13:16 +00:00
2019.01.19, Version 1.25.0 (Stable)
Changes since version 1.24.1: * Revert "win,fs: retry if uv_fs_rename fails" (Ben Noordhuis) * aix: manually trigger fs event monitoring (Gireesh Punathil) * unix: rename WRITE_RETRY_ON_ERROR macro (Ben Noordhuis) * darwin: DRY platform-specific error check (Ben Noordhuis) * unix: refactor uv__write() (Ben Noordhuis) * unix: don't send handle twice on partial write (Ben Noordhuis) * tty,win: fix Alt+key under WSL (Bartosz Sosnowski) * build: support running tests in out-of-tree builds (Jameson Nash) * fsevents: really watch files with fsevents on macos 10.7+ (Jameson Nash) * thread,mingw64: need intrin.h header for SSE2 MemoryBarrier (Jameson Nash) * win: fix sizeof-pointer-div warning (cjihrig) * unix,win: add uv_os_uname() (cjihrig) * win, tty: fix CreateFileW() return value check (Bartosz Sosnowski) * unix: enable IPv6 tests on OpenBSD (ptlomholt) * test: fix test-ipc spawn_helper exit_cb (Santiago Gimeno) * test: fix test-ipc tests (Santiago Gimeno) * unix: better handling of unsupported F_FULLFSYNC (Victor Costan) * win,test: de-flake fs_event_watch_dir_short_path (Refael Ackermann) * win: fix msvc warning (sid) * openbsd: switch to libuv's barrier implementation (ptlomholt) * unix,stream: fix zero byte writes (Santiago Gimeno) * ibmi: return EISDIR on read from directory fd (Kevin Adler) * build: wrap long lines in Makefile.am (cjihrig)
This commit is contained in:
parent
a44f41349b
commit
4a10a9d425
1
.mailmap
1
.mailmap
@ -45,3 +45,4 @@ Yazhong Liu <yorkiefixer@gmail.com>
|
||||
Yuki Okumura <mjt@cltn.org>
|
||||
jBarz <jBarz@users.noreply.github.com> <jbarboza@ca.ibm.com>
|
||||
jBarz <jBarz@users.noreply.github.com> <jbarz@users.noreply.github.com>
|
||||
ptlomholt <pt@lomholt.com>
|
||||
|
4
AUTHORS
4
AUTHORS
@ -362,3 +362,7 @@ Ashe Connor <ashe@kivikakk.ee>
|
||||
Rick <lcw0622@163.com>
|
||||
Ivan Krylov <krylov.r00t@gmail.com>
|
||||
Michael Meier <michael.meier@leica-geosystems.com>
|
||||
ptlomholt <pt@lomholt.com>
|
||||
Victor Costan <pwnall@chromium.org>
|
||||
sid <sidyhe@hotmail.com>
|
||||
Kevin Adler <kadler@us.ibm.com>
|
||||
|
51
ChangeLog
51
ChangeLog
@ -1,3 +1,54 @@
|
||||
2019.01.19, Version 1.25.0 (Stable)
|
||||
|
||||
Changes since version 1.24.1:
|
||||
|
||||
* Revert "win,fs: retry if uv_fs_rename fails" (Ben Noordhuis)
|
||||
|
||||
* aix: manually trigger fs event monitoring (Gireesh Punathil)
|
||||
|
||||
* unix: rename WRITE_RETRY_ON_ERROR macro (Ben Noordhuis)
|
||||
|
||||
* darwin: DRY platform-specific error check (Ben Noordhuis)
|
||||
|
||||
* unix: refactor uv__write() (Ben Noordhuis)
|
||||
|
||||
* unix: don't send handle twice on partial write (Ben Noordhuis)
|
||||
|
||||
* tty,win: fix Alt+key under WSL (Bartosz Sosnowski)
|
||||
|
||||
* build: support running tests in out-of-tree builds (Jameson Nash)
|
||||
|
||||
* fsevents: really watch files with fsevents on macos 10.7+ (Jameson Nash)
|
||||
|
||||
* thread,mingw64: need intrin.h header for SSE2 MemoryBarrier (Jameson Nash)
|
||||
|
||||
* win: fix sizeof-pointer-div warning (cjihrig)
|
||||
|
||||
* unix,win: add uv_os_uname() (cjihrig)
|
||||
|
||||
* win, tty: fix CreateFileW() return value check (Bartosz Sosnowski)
|
||||
|
||||
* unix: enable IPv6 tests on OpenBSD (ptlomholt)
|
||||
|
||||
* test: fix test-ipc spawn_helper exit_cb (Santiago Gimeno)
|
||||
|
||||
* test: fix test-ipc tests (Santiago Gimeno)
|
||||
|
||||
* unix: better handling of unsupported F_FULLFSYNC (Victor Costan)
|
||||
|
||||
* win,test: de-flake fs_event_watch_dir_short_path (Refael Ackermann)
|
||||
|
||||
* win: fix msvc warning (sid)
|
||||
|
||||
* openbsd: switch to libuv's barrier implementation (ptlomholt)
|
||||
|
||||
* unix,stream: fix zero byte writes (Santiago Gimeno)
|
||||
|
||||
* ibmi: return EISDIR on read from directory fd (Kevin Adler)
|
||||
|
||||
* build: wrap long lines in Makefile.am (cjihrig)
|
||||
|
||||
|
||||
2018.12.17, Version 1.24.1 (Stable), 274f2bd3b70847cadd9a3965577a87e666ab9ac3
|
||||
|
||||
Changes since version 1.24.0:
|
||||
|
@ -13,7 +13,7 @@
|
||||
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
AC_PREREQ(2.57)
|
||||
AC_INIT([libuv], [1.24.1], [https://github.com/libuv/libuv/issues])
|
||||
AC_INIT([libuv], [1.25.0], [https://github.com/libuv/libuv/issues])
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
m4_include([m4/libuv-extra-automake-flags.m4])
|
||||
m4_include([m4/as_case.m4])
|
||||
|
@ -31,10 +31,10 @@
|
||||
*/
|
||||
|
||||
#define UV_VERSION_MAJOR 1
|
||||
#define UV_VERSION_MINOR 24
|
||||
#define UV_VERSION_PATCH 2
|
||||
#define UV_VERSION_IS_RELEASE 0
|
||||
#define UV_VERSION_SUFFIX "dev"
|
||||
#define UV_VERSION_MINOR 25
|
||||
#define UV_VERSION_PATCH 0
|
||||
#define UV_VERSION_IS_RELEASE 1
|
||||
#define UV_VERSION_SUFFIX ""
|
||||
|
||||
#define UV_VERSION_HEX ((UV_VERSION_MAJOR << 16) | \
|
||||
(UV_VERSION_MINOR << 8) | \
|
||||
|
Loading…
x
Reference in New Issue
Block a user