jpayne@69: /* MIT License jpayne@69: * jpayne@69: * Copyright (c) Daniel Stenberg jpayne@69: * jpayne@69: * Permission is hereby granted, free of charge, to any person obtaining a copy jpayne@69: * of this software and associated documentation files (the "Software"), to deal jpayne@69: * in the Software without restriction, including without limitation the rights jpayne@69: * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell jpayne@69: * copies of the Software, and to permit persons to whom the Software is jpayne@69: * furnished to do so, subject to the following conditions: jpayne@69: * jpayne@69: * The above copyright notice and this permission notice (including the next jpayne@69: * paragraph) shall be included in all copies or substantial portions of the jpayne@69: * Software. jpayne@69: * jpayne@69: * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR jpayne@69: * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, jpayne@69: * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE jpayne@69: * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER jpayne@69: * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, jpayne@69: * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE jpayne@69: * SOFTWARE. jpayne@69: * jpayne@69: * SPDX-License-Identifier: MIT jpayne@69: */ jpayne@69: jpayne@69: #ifndef ARES__VERSION_H jpayne@69: #define ARES__VERSION_H jpayne@69: jpayne@69: /* This is the global package copyright */ jpayne@69: #define ARES_COPYRIGHT "2004 - 2024 Daniel Stenberg, ." jpayne@69: jpayne@69: #define ARES_VERSION_MAJOR 1 jpayne@69: #define ARES_VERSION_MINOR 34 jpayne@69: #define ARES_VERSION_PATCH 4 jpayne@69: #define ARES_VERSION_STR "1.34.4" jpayne@69: jpayne@69: /* NOTE: We cannot make the version string a C preprocessor stringify operation jpayne@69: * due to assumptions made by integrators that aren't properly using jpayne@69: * pkgconf or cmake and are doing their own detection based on parsing jpayne@69: * this header */ jpayne@69: jpayne@69: #define ARES_VERSION \ jpayne@69: ((ARES_VERSION_MAJOR << 16) | (ARES_VERSION_MINOR << 8) | \ jpayne@69: (ARES_VERSION_PATCH)) jpayne@69: jpayne@69: #endif