17777dab0Sopenharmony_ci/* Copyright Joyent, Inc. and other Node contributors. All rights reserved. 27777dab0Sopenharmony_ci * 37777dab0Sopenharmony_ci * Permission is hereby granted, free of charge, to any person obtaining a copy 47777dab0Sopenharmony_ci * of this software and associated documentation files (the "Software"), to 57777dab0Sopenharmony_ci * deal in the Software without restriction, including without limitation the 67777dab0Sopenharmony_ci * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 77777dab0Sopenharmony_ci * sell copies of the Software, and to permit persons to whom the Software is 87777dab0Sopenharmony_ci * furnished to do so, subject to the following conditions: 97777dab0Sopenharmony_ci * 107777dab0Sopenharmony_ci * The above copyright notice and this permission notice shall be included in 117777dab0Sopenharmony_ci * all copies or substantial portions of the Software. 127777dab0Sopenharmony_ci * 137777dab0Sopenharmony_ci * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 147777dab0Sopenharmony_ci * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 157777dab0Sopenharmony_ci * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 167777dab0Sopenharmony_ci * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 177777dab0Sopenharmony_ci * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 187777dab0Sopenharmony_ci * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 197777dab0Sopenharmony_ci * IN THE SOFTWARE. 207777dab0Sopenharmony_ci */ 217777dab0Sopenharmony_ci 227777dab0Sopenharmony_ci#ifndef UV_VERSION_H 237777dab0Sopenharmony_ci#define UV_VERSION_H 247777dab0Sopenharmony_ci 257777dab0Sopenharmony_ci /* 267777dab0Sopenharmony_ci * Versions with the same major number are ABI stable. API is allowed to 277777dab0Sopenharmony_ci * evolve between minor releases, but only in a backwards compatible way. 287777dab0Sopenharmony_ci * Make sure you update the -soname directives in configure.ac 297777dab0Sopenharmony_ci * whenever you bump UV_VERSION_MAJOR or UV_VERSION_MINOR (but 307777dab0Sopenharmony_ci * not UV_VERSION_PATCH.) 317777dab0Sopenharmony_ci */ 327777dab0Sopenharmony_ci 337777dab0Sopenharmony_ci#define UV_VERSION_MAJOR 1 347777dab0Sopenharmony_ci#define UV_VERSION_MINOR 44 357777dab0Sopenharmony_ci#define UV_VERSION_PATCH 1 367777dab0Sopenharmony_ci#define UV_VERSION_IS_RELEASE 1 377777dab0Sopenharmony_ci#define UV_VERSION_SUFFIX "" 387777dab0Sopenharmony_ci 397777dab0Sopenharmony_ci#define UV_VERSION_HEX ((UV_VERSION_MAJOR << 16) | \ 407777dab0Sopenharmony_ci (UV_VERSION_MINOR << 8) | \ 417777dab0Sopenharmony_ci (UV_VERSION_PATCH)) 427777dab0Sopenharmony_ci 437777dab0Sopenharmony_ci#endif /* UV_VERSION_H */ 44