summaryrefslogtreecommitdiffstats
path: root/NEWS
diff options
context:
space:
mode:
authorJakub Hrozek <jhrozek@redhat.com>2010-01-28 20:04:19 +0100
committerJakub Hrozek <jhrozek@redhat.com>2010-01-28 20:04:19 +0100
commit03ff51230ea260b3aab05fe07c0c7f66c94b176c (patch)
tree504b6929a32c518712b9da03f3e02d0a7536957e /NEWS
downloadc-ares-03ff51230ea260b3aab05fe07c0c7f66c94b176c.tar.gz
c-ares-03ff51230ea260b3aab05fe07c0c7f66c94b176c.tar.xz
c-ares-03ff51230ea260b3aab05fe07c0c7f66c94b176c.zip
Initial import
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS21
1 files changed, 21 insertions, 0 deletions
diff --git a/NEWS b/NEWS
new file mode 100644
index 0000000..95a2eee
--- /dev/null
+++ b/NEWS
@@ -0,0 +1,21 @@
+Major changes since:
+* see the CHANGES file
+
+Major changes in release 1.1.1:
+* ares should now compile as C++ code (no longer uses reserved word
+ "class").
+* Added SRV support to adig test program.
+* Fixed a few error handling bugs in query processing.
+
+Major changes in release 1.1.0:
+* Added ares_free_string() function so that memory can be freed in the
+ same layer as it is allocated, a desirable feature in some
+ environments.
+* A few of the ares_dns.h macros are fixed to use the proper bitwise
+ operator.
+* Fixed a couple of fenceposts fixed in ares_expand_name()'s
+ bounds-checking.
+* In process_timeouts(), extract query->next before calling
+ next_server() and possibly freeing the query structure.
+* Casted arguments to ctype macros casted to unsigned char, since not
+ all char values are valid inputs to those macros according to ANSI.