diff options
author | Daniel Stenberg <daniel@haxx.se> | 2017-01-16 08:34:15 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-01-16 08:34:15 +0100 |
commit | 8f8ba6122458beaa491ce00d0846c0beb15ef2e2 (patch) | |
tree | febc0f2e220122fc79d2eebaea7ead6d3e30e885 /include | |
parent | 25ed9ea51257c0561237d1b725c4ff3d59b3f32c (diff) |
bump: next release will be 7.53.0
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 4 | ||||
-rw-r--r-- | include/curl/curlver.h | 12 |
2 files changed, 8 insertions, 8 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index a626caf38..74ac0350e 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -7,7 +7,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -479,7 +479,7 @@ typedef enum { CURLE_LDAP_CANNOT_BIND, /* 38 */ CURLE_LDAP_SEARCH_FAILED, /* 39 */ CURLE_OBSOLETE40, /* 40 - NOT USED */ - CURLE_FUNCTION_NOT_FOUND, /* 41 - NOT USED starting with 7.52.2 */ + CURLE_FUNCTION_NOT_FOUND, /* 41 - NOT USED starting with 7.53.0 */ CURLE_ABORTED_BY_CALLBACK, /* 42 */ CURLE_BAD_FUNCTION_ARGUMENT, /* 43 */ CURLE_OBSOLETE44, /* 44 - NOT USED */ diff --git a/include/curl/curlver.h b/include/curl/curlver.h index 1c87a9cd3..530e8df20 100644 --- a/include/curl/curlver.h +++ b/include/curl/curlver.h @@ -7,7 +7,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -26,17 +26,17 @@ a script at release-time. This was made its own header file in 7.11.2 */ /* This is the global package copyright */ -#define LIBCURL_COPYRIGHT "1996 - 2016 Daniel Stenberg, <daniel@haxx.se>." +#define LIBCURL_COPYRIGHT "1996 - 2017 Daniel Stenberg, <daniel@haxx.se>." /* This is the version number of the libcurl package from which this header file origins: */ -#define LIBCURL_VERSION "7.52.2-DEV" +#define LIBCURL_VERSION "7.53.0-DEV" /* The numeric version number is also available "in parts" by using these defines: */ #define LIBCURL_VERSION_MAJOR 7 -#define LIBCURL_VERSION_MINOR 52 -#define LIBCURL_VERSION_PATCH 2 +#define LIBCURL_VERSION_MINOR 53 +#define LIBCURL_VERSION_PATCH 0 /* This is the numeric version of the libcurl version number, meant for easier parsing and comparions by programs. The LIBCURL_VERSION_NUM define will @@ -57,7 +57,7 @@ CURL_VERSION_BITS() macro since curl's own configure script greps for it and needs it to contain the full number. */ -#define LIBCURL_VERSION_NUM 0x073402 +#define LIBCURL_VERSION_NUM 0x073500 /* * This is the date and time when the full source package was created. The |