From b22bc1f36eb780879ae366c3e0fdffe7f6d26453 Mon Sep 17 00:00:00 2001 From: Brad House Date: Wed, 9 Oct 2024 20:52:20 -0400 Subject: [PATCH] release-1.34.1 --- CMakeLists.txt | 4 ++-- configure.ac | 4 ++-- include/ares_version.h | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8e0518f7..39963f1e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,7 +12,7 @@ INCLUDE (CheckCSourceCompiles) INCLUDE (CheckStructHasMember) INCLUDE (CheckLibraryExists) -PROJECT (c-ares LANGUAGES C VERSION "1.34.0" ) +PROJECT (c-ares LANGUAGES C VERSION "1.34.1" ) # Set this version before release SET (CARES_VERSION "${PROJECT_VERSION}") @@ -30,7 +30,7 @@ INCLUDE (GNUInstallDirs) # include this *AFTER* PROJECT(), otherwise paths are w # For example, a version of 4:0:2 would generate output such as: # libname.so -> libname.so.2 # libname.so.2 -> libname.so.2.2.0 -SET (CARES_LIB_VERSIONINFO "21:0:19") +SET (CARES_LIB_VERSIONINFO "21:1:19") OPTION (CARES_STATIC "Build as a static library" OFF) diff --git a/configure.ac b/configure.ac index f8a3eb42..cc52c2c6 100644 --- a/configure.ac +++ b/configure.ac @@ -2,10 +2,10 @@ dnl Copyright (C) The c-ares project and its contributors dnl SPDX-License-Identifier: MIT AC_PREREQ([2.69]) -AC_INIT([c-ares], [1.34.0], +AC_INIT([c-ares], [1.34.1], [c-ares mailing list: http://lists.haxx.se/listinfo/c-ares]) -CARES_VERSION_INFO="21:0:19" +CARES_VERSION_INFO="21:1:19" dnl This flag accepts an argument of the form current[:revision[:age]]. So, dnl passing -version-info 3:12:1 sets current to 3, revision to 12, and age to dnl 1. diff --git a/include/ares_version.h b/include/ares_version.h index 24becc6a..ba98e694 100644 --- a/include/ares_version.h +++ b/include/ares_version.h @@ -32,7 +32,7 @@ #define ARES_VERSION_MAJOR 1 #define ARES_VERSION_MINOR 34 -#define ARES_VERSION_PATCH 0 +#define ARES_VERSION_PATCH 1 #define ARES_VERSION \ ((ARES_VERSION_MAJOR << 16) | (ARES_VERSION_MINOR << 8) | \