mirror of
https://github.com/libuv/libuv
synced 2025-03-28 21:13:16 +00:00

Changes since version 1.42.0: * run test named ip6_sin6_len (Jameson Nash) * docs: fix wrong information about scheduling (Mohamed Edrah) * unix: protect fork in uv_spawn from signals (Jameson Nash) * drop only successfully sent packets post sendmmsg (Supragya Raj) * test: fix typo in test-tty-escape-sequence-processing.c (Ikko Ashimine) * cmake: use standard installation layout always (Sylvain Corlay) * win,spawn: allow UNC path with forward slash (earnal) * win,fsevent: fix uv_fs_event_stop() assert (Ben Noordhuis) * unix: remove redundant include in unix.h ( * doc: mark SmartOS as Tier 3 support ( * doc: fix broken links for netbsd's sysctl manpage ( * misc: adjust stalebot deadline ( * test: remove `dns-server.c` as it is not used anywhere ( * build: fix non-cmake android builds ( * doc: replace pyuv with uvloop ( * asan: fix some tests ( * build: add experimental TSAN configuration ( * pipe: remove useless assertion ( * bsd: destroy mutex in uv__process_title_cleanup() ( * build: add windows build to CI ( * win,fs: fix error code in uv_fs_read() and uv_fs_write() ( Sen) * build: add macos-latest to ci matrix ( * udp: fix &/&& typo in macro condition ( * build: install cmake package module (Petr Menšík) * win: fix build for mingw32 ( * build: fix build failures with MinGW new headers (erw7) * build: fix win build with cmake versions before v3.14 ( * unix: support aarch64 in uv_cpu_info() ( * linux: work around CIFS EPERM bug ( * sunos: Oracle Developer Studio support ( * Revert "sunos: Oracle Developer Studio support ( * sunos: Oracle Developer Studio support ( * stream: permit read after seeing EOF ( * thread: initialize uv_thread_self for all threads ( * kqueue: ignore write-end closed notifications ( * macos: fix the cfdata length in uv__get_cpu_speed ( Bache) * unix,win: add uv_ip_name to get name from sockaddr ( * win,test: fix a few typos (AJ Heller) * zos: use destructor for uv__threadpool_cleanup() ( Zhang) * linux: use MemAvailable instead of MemFree ( * freebsd: call dlerror() only if necessary ( * bsd,windows,zos: fix udp disconnect EINVAL (
44 lines
1.8 KiB
C
44 lines
1.8 KiB
C
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to
|
|
* deal in the Software without restriction, including without limitation the
|
|
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
* sell copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
* IN THE SOFTWARE.
|
|
*/
|
|
|
|
#ifndef UV_VERSION_H
|
|
#define UV_VERSION_H
|
|
|
|
/*
|
|
* Versions with the same major number are ABI stable. API is allowed to
|
|
* evolve between minor releases, but only in a backwards compatible way.
|
|
* Make sure you update the -soname directives in configure.ac
|
|
* whenever you bump UV_VERSION_MAJOR or UV_VERSION_MINOR (but
|
|
* not UV_VERSION_PATCH.)
|
|
*/
|
|
|
|
#define UV_VERSION_MAJOR 1
|
|
#define UV_VERSION_MINOR 43
|
|
#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) | \
|
|
(UV_VERSION_PATCH))
|
|
|
|
#endif /* UV_VERSION_H */
|