From: Daniel Stenberg Date: Tue, 16 Aug 2011 21:02:39 +0000 (+0200) Subject: 1.7.6: start working... X-Git-Tag: upstream/1.10.0~152 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f11c2c28913d323e269b3bb521fea254ac51d9df;p=platform%2Fupstream%2Fc-ares.git 1.7.6: start working... --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 06d7856..cbbfd50 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -1,26 +1,16 @@ -c-ares version 1.7.5 +c-ares version 1.7.6 + +Changed: + + o Fixed: - o detection of semicolon comments in resolv.conf - o avoid using system's inet_net_pton affected by the WLB-2008080064 advisory - o replacement ares_inet_net_pton affected by the WLB-2008080064 advisory - o replacement ares_inet_ntop affected by potential out of bounds write - o added install target to Makefile.msvc - o only fall back to AF_INET searches when looking for AF_UNSPEC addresses - o fixed ares_parse_*_reply memory leaks - o Use correct sizeof in ares_getnameinfo() - o IPv6-on-windows: find DNS servers correctly - o man pages: docs for the c-ares utility programs - o getservbyport replacement for Win CE - o config_sortlist: (win32) missing else - o advance_tcp_send_queue: avoid NULL ptr dereference - o configure: fix a bashism - o ares_expand_name: Fix encoded length for indirect root + o + Thanks go to these friendly people for their efforts and contributions: - Yang Tse, Jakub Hrozek, Gisle Vanem, Tom Hughes, David Stuart, Dima Tisnek, - Peter Pentchev, Stefan Buhler + Have fun! diff --git a/ares_version.h b/ares_version.h index efd0156..6889f28 100644 --- a/ares_version.h +++ b/ares_version.h @@ -3,15 +3,15 @@ #define ARES__VERSION_H /* This is the global package copyright */ -#define ARES_COPYRIGHT "2004 - 2010 Daniel Stenberg, ." +#define ARES_COPYRIGHT "2004 - 2011 Daniel Stenberg, ." #define ARES_VERSION_MAJOR 1 #define ARES_VERSION_MINOR 7 -#define ARES_VERSION_PATCH 5 +#define ARES_VERSION_PATCH 6 #define ARES_VERSION ((ARES_VERSION_MAJOR<<16)|\ (ARES_VERSION_MINOR<<8)|\ (ARES_VERSION_PATCH)) -#define ARES_VERSION_STR "1.7.5-DEV" +#define ARES_VERSION_STR "1.7.6-DEV" #if (ARES_VERSION >= 0x010700) # define CARES_HAVE_ARES_LIBRARY_INIT 1