diff options
author | Daniel Stenberg <daniel@haxx.se> | 2007-11-21 10:16:44 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2007-11-21 10:16:44 +0000 |
commit | 35212da048c8056e07d2b177ff8e82dabc7a37f4 (patch) | |
tree | 02696dcb4e9a8a351237cdcc849ec81e881e7362 | |
parent | 755e743cdd5073202ec5f30fb3b0956c0539ba2e (diff) |
and we start on 1.5.2!
-rw-r--r-- | ares/CHANGES | 6 | ||||
-rw-r--r-- | ares/RELEASE-NOTES | 6 | ||||
-rw-r--r-- | ares/ares_version.h | 4 |
3 files changed, 8 insertions, 8 deletions
diff --git a/ares/CHANGES b/ares/CHANGES index 61a789fc8..4034101b6 100644 --- a/ares/CHANGES +++ b/ares/CHANGES @@ -1,13 +1,13 @@ Changelog for the c-ares project -Version 1.5.1 (Nov 20, 2007) +Version 1.5.1 (Nov 21, 2007) -* November 20 2007 (Daniel Stenberg) +* November 21 2007 (Daniel Stenberg) - Robin Cornelius pointed out that ares_llist.h was missing in the release archive for 1.5.0 -Version 1.5.0 (Nov 20, 2007) +Version 1.5.0 (Nov 21, 2007) * October 2 2007 (Daniel Stenberg) diff --git a/ares/RELEASE-NOTES b/ares/RELEASE-NOTES index b1e533df7..aff018aa2 100644 --- a/ares/RELEASE-NOTES +++ b/ares/RELEASE-NOTES @@ -1,9 +1,9 @@ -This is what's new and changed in the c-ares 1.5.1 release: +This is what's new and changed in the c-ares 1.5.2 release: - o added the ares_llist.h header that was missing in the 1.5.0 release + o Thanks go to these friendly people for their efforts and contributions: - Robin Cornelius + Have fun! diff --git a/ares/ares_version.h b/ares/ares_version.h index e215b0cf7..aaf49d92c 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 1 +#define ARES_VERSION_PATCH 2 #define ARES_VERSION ((ARES_VERSION_MAJOR<<16)|\ (ARES_VERSION_MINOR<<8)|\ (ARES_VERSION_PATCH)) -#define ARES_VERSION_STR "1.5.1-CVS" +#define ARES_VERSION_STR "1.5.2-CVS" #ifdef __cplusplus extern "C" { |