1.7.6: start working...
authorDaniel Stenberg <daniel@haxx.se>
Tue, 16 Aug 2011 21:02:39 +0000 (23:02 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 16 Aug 2011 21:02:39 +0000 (23:02 +0200)
RELEASE-NOTES
ares_version.h

index 06d7856bc74d15d73c1a7bd779ec9eaeaff4fbcd..cbbfd50dfb88452dec307f637b5e07d3e728c131 100644 (file)
@@ -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!
index efd0156dd10f3790b2ce5f0628336a347a8cf019..6889f28f39559e2fc799659ed0282f1051d37d33 100644 (file)
@@ -3,15 +3,15 @@
 #define ARES__VERSION_H
 
 /* This is the global package copyright */
-#define ARES_COPYRIGHT "2004 - 2010 Daniel Stenberg, <daniel@haxx.se>."
+#define ARES_COPYRIGHT "2004 - 2011 Daniel Stenberg, <daniel@haxx.se>."
 
 #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