diff options
author | Daniel Stenberg <daniel@haxx.se> | 2007-09-28 20:28:06 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2007-09-28 20:28:06 +0000 |
commit | 3d59a3855a701add1616c3f694276bf3cb4322bf (patch) | |
tree | fcf3d47811b0552d09822583789515a4a5f2dc29 /ares | |
parent | 83883668494930839b2a959314c72d9aa511d340 (diff) |
Bumped version to 1.5.0 for next release and soname bumped to 2 due to ABI
and API changes in the progress callback (and possibly more coming up from
Steinar)
Diffstat (limited to 'ares')
-rw-r--r-- | ares/Makefile.am | 2 | ||||
-rw-r--r-- | ares/ares_version.h | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/ares/Makefile.am b/ares/Makefile.am index 0449c8b01..999d09cdc 100644 --- a/ares/Makefile.am +++ b/ares/Makefile.am @@ -14,7 +14,7 @@ EXTRA_DIST = CHANGES README.cares Makefile.inc adig.c ahost.c $(man_MANS) \ $(MSVCFILES) AUTHORS config-win32.h RELEASE-NOTES libcares.pc.in -VER=-version-info 1:0:0 +VER=-version-info 2:0:0 # This flag accepts an argument of the form current[:revision[:age]]. So, # passing -version-info 3:12:1 sets current to 3, revision to 12, and age to # 1. diff --git a/ares/ares_version.h b/ares/ares_version.h index 524591630..e4d10c38c 100644 --- a/ares/ares_version.h +++ b/ares/ares_version.h @@ -4,12 +4,12 @@ #define ARES__VERSION_H #define ARES_VERSION_MAJOR 1 -#define ARES_VERSION_MINOR 4 -#define ARES_VERSION_PATCH 1 +#define ARES_VERSION_MINOR 5 +#define ARES_VERSION_PATCH 0 #define ARES_VERSION ((ARES_VERSION_MAJOR<<16)|\ (ARES_VERSION_MINOR<<8)|\ (ARES_VERSION_PATCH)) -#define ARES_VERSION_STR "1.4.1-CVS" +#define ARES_VERSION_STR "1.5.0-CVS" #ifdef __cplusplus extern "C" { |