version: start working on 1.8.1-DEV

pull/14/head
Yang Tse 13 years ago
parent f037316e4b
commit 7ec5e8e656
  1. 19
      RELEASE-NOTES
  2. 6
      ares_version.h

@ -1,26 +1,15 @@
c-ares version 1.8
c-ares version 1.8.1
Changed:
o Added ares_parse_naptr_reply()
o
Fixed:
o handle CNAME-only in ares_parse_aaaa_reply()
o support multiple DNS servers on Android
o check for __ANDROID__ in addition to ANDROID macro
o port numbers: convert them to network order
o get_iphlpapi_dns_info: fix buffer overrun
o configure: make CURL_CHECK_DEF ignore leading whitespace
o segfault triggered in ares_init_options()
o ares_getnameinfo's memcpy did not copy enough bytes
o ares_destroy: fix segfault in ares_destroy_options()
o CHANGES: generate from script
o configure: fix symbol hiding usability check
o
Thanks go to these friendly people for their efforts and contributions:
Geert Uytterhoeven, Guenter Knauf, Yang Tse, Poul Thomas Lomholt,
Peter Griess, Albert Chin, Denis Bilenko
Have fun!

@ -6,12 +6,12 @@
#define ARES_COPYRIGHT "2004 - 2012 Daniel Stenberg, <daniel@haxx.se>."
#define ARES_VERSION_MAJOR 1
#define ARES_VERSION_MINOR 7
#define ARES_VERSION_PATCH 6
#define ARES_VERSION_MINOR 8
#define ARES_VERSION_PATCH 1
#define ARES_VERSION ((ARES_VERSION_MAJOR<<16)|\
(ARES_VERSION_MINOR<<8)|\
(ARES_VERSION_PATCH))
#define ARES_VERSION_STR "1.7.6-DEV"
#define ARES_VERSION_STR "1.8.1-DEV"
#if (ARES_VERSION >= 0x010700)
# define CARES_HAVE_ARES_LIBRARY_INIT 1

Loading…
Cancel
Save