1.18.1 release prep

pull/436/head
bradh352 3 years ago
parent 71adb3c417
commit d9492ec19b
  1. 2
      CMakeLists.txt
  2. 10
      RELEASE-NOTES
  3. 2
      configure.ac
  4. 4
      include/ares_version.h

@ -26,7 +26,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 "7:0:5")
SET (CARES_LIB_VERSIONINFO "7:1:5")
OPTION (CARES_STATIC "Build as a static library" OFF)

@ -1,3 +1,13 @@
c-ares version 1.18.1
This is an urgent bugfix release for a regression made in 1.18.0.
Bug fixes:
o ares_getaddrinfo() would return ai_addrlen of 16 for ipv6
adddresses rather than the sizeof(struct sockaddr_in6)
c-ares version 1.18.0
This is a feature and bugfix release. It addresses a couple of new feature

@ -3,7 +3,7 @@ AC_PREREQ([2.60])
AC_INIT([c-ares], [1.18.0],
[c-ares mailing list: http://lists.haxx.se/listinfo/c-ares])
CARES_VERSION_INFO="7:0:5"
CARES_VERSION_INFO="7:1:5"
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.

@ -7,11 +7,11 @@
#define ARES_VERSION_MAJOR 1
#define ARES_VERSION_MINOR 18
#define ARES_VERSION_PATCH 0
#define ARES_VERSION_PATCH 1
#define ARES_VERSION ((ARES_VERSION_MAJOR<<16)|\
(ARES_VERSION_MINOR<<8)|\
(ARES_VERSION_PATCH))
#define ARES_VERSION_STR "1.18.0"
#define ARES_VERSION_STR "1.18.1"
#if (ARES_VERSION >= 0x010700)
# define CARES_HAVE_ARES_LIBRARY_INIT 1

Loading…
Cancel
Save