aboutsummaryrefslogtreecommitdiff
path: root/ares
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2007-11-21 09:31:56 +0000
committerDaniel Stenberg <daniel@haxx.se>2007-11-21 09:31:56 +0000
commit23559fd118df92145a1158a12c38b4c5f06c2b85 (patch)
treef6f7abed1e4d3b374c0334cfb73650d55a6765d5 /ares
parentd994a873a4a10dca8dfa2d74d143b260b52b21b9 (diff)
start working on 1.5.1 now
Diffstat (limited to 'ares')
-rw-r--r--ares/RELEASE-NOTES23
-rw-r--r--ares/ares_version.h4
2 files changed, 5 insertions, 22 deletions
diff --git a/ares/RELEASE-NOTES b/ares/RELEASE-NOTES
index 4307f6a15..b8b6379b1 100644
--- a/ares/RELEASE-NOTES
+++ b/ares/RELEASE-NOTES
@@ -1,26 +1,9 @@
-This is what's new and changed in the c-ares 1.5.0 release:
+This is what's new and changed in the c-ares 1.5.1 release:
- o SONAME bump to a few API and ABI breaking changes:
- - ares_host_callback()
- - ares_nameinfo_callback()
- - ares_parse_a_reply()
- - ares_parse_aaaa_reply()
-
- o two valgrind reports were silenced
- o ares_save_options() fix
- o do DNS retries even on TCP connections
- o correctly clear sockets from the fd_set in several functions
- o always wait on TCP events to detect connect closures
- o new socket options: ARES_OPT_SOCK_SNDBUF and ARES_OPT_SOCK_RCVBUF
- o made the query callbacks receive the number of timeouts that happened during
- the execution of a query
- o don't skip a server if it's the only one
- o segfault when generating a DNS "Transaction ID" under low memory conditions
- o ares_strerror() segfault fix
- o added copyright texts to a few places that were missing them
+ o
Thanks go to these friendly people for their efforts and contributions:
- Vlad Dinulescu, Brad House, Steinar H. Gunderson, Yang Tse
+
Have fun!
diff --git a/ares/ares_version.h b/ares/ares_version.h
index e4d10c38c..e215b0cf7 100644
--- a/ares/ares_version.h
+++ b/ares/ares_version.h
@@ -5,11 +5,11 @@
#define ARES_VERSION_MAJOR 1
#define ARES_VERSION_MINOR 5
-#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.5.0-CVS"
+#define ARES_VERSION_STR "1.5.1-CVS"
#ifdef __cplusplus
extern "C" {