Corrected version numbers after bump
authorSteve Holme <steve_holme@hotmail.com>
Sat, 27 Apr 2013 22:02:20 +0000 (23:02 +0100)
committerSteve Holme <steve_holme@hotmail.com>
Sat, 27 Apr 2013 22:02:20 +0000 (23:02 +0100)
docs/libcurl/curl_easy_setopt.3
docs/libcurl/symbols-in-versions
src/tool_operate.c

index 19155af6fc466786b8e365485697339583901f0b..f828cb7cb335e6a79a3791fa70a0a22768432ba5 100644 (file)
@@ -626,7 +626,7 @@ given host names:
 
 HTTP, FTP, DICT, LDAP, IMAP, POP3 or SMTP
 
-(POP3 and SMTP added in 7.30.1)
+(POP3 and SMTP added in 7.31.0)
 
 Should the protocol, either that specified by the scheme or deduced by libcurl
 from the host name, not be supported by libcurl then
@@ -664,7 +664,7 @@ smtp://user:password;options@mail.example.com
 
 At present only IMAP, POP3 and SMTP support login options as part of the host.
 For more information about the login options in URL syntax please see RFC2384,
-RFC5092 and IETF draft draft-earhart-url-smtp-00.txt (Added in 7.30.1).
+RFC5092 and IETF draft draft-earhart-url-smtp-00.txt (Added in 7.31.0).
 
 The port is optional and when not specified libcurl will use the default port
 based on the determined or specified protocol: 80 for HTTP, 21 for FTP and 25
@@ -1071,7 +1071,7 @@ to prevent accidental information leakage.
 
 At present only IMAP, POP3 and SMTP support login options as part of the
 details string. For more information about the login options please see
-RFC2384, RFC5092 and IETF draft draft-earhart-url-smtp-00.txt (Added in 7.30.1).
+RFC2384, RFC5092 and IETF draft draft-earhart-url-smtp-00.txt (Added in 7.31.0).
 
 Use \fICURLOPT_HTTPAUTH\fP to specify the authentication method for HTTP based
 connections.
@@ -1221,7 +1221,7 @@ work. (Added in 7.10.7)
 Pass a long. If the value is 1, curl will send the initial response to the
 server in the first authentication packet in order to reduce the number of
 ping pong requests. Only applicable to supporting SASL authentication
-mechanisms and to the IMAP, POP3 and SMTP protocols. (Added in 7.30.1)
+mechanisms and to the IMAP, POP3 and SMTP protocols. (Added in 7.31.0)
 
 Note: Whilst IMAP supports this option there is no need to explicitly set it,
 as libcurl can determine the feature itself when the server supports the
index e1ba414bff35f263143c9cac90ed61615d08412a..54b6dbc3dd6fa07cf60f8fb412af3990d957728f 100644 (file)
@@ -456,7 +456,7 @@ CURLOPT_RTSP_SERVER_CSEQ        7.20.0
 CURLOPT_RTSP_SESSION_ID         7.20.0
 CURLOPT_RTSP_STREAM_URI         7.20.0
 CURLOPT_RTSP_TRANSPORT          7.20.0
-CURLOPT_SASL_IR                 7.30.1
+CURLOPT_SASL_IR                 7.31.0
 CURLOPT_SEEKDATA                7.18.0
 CURLOPT_SEEKFUNCTION            7.18.0
 CURLOPT_SERVER_RESPONSE_TIMEOUT 7.20.0
index 19d0799e1b4aebcd251d2008ed5f637847f17f1f..3a15bed511f93a84e9d1269da147bd24d2cbef02 100644 (file)
@@ -1320,7 +1320,7 @@ int operate(struct Configurable *config, int argc, argv_item_t argv[])
         if(config->mail_auth)
           my_setopt_str(curl, CURLOPT_MAIL_AUTH, config->mail_auth);
 
-        /* new in 7.30.1 */
+        /* new in 7.31.0 */
         if(config->sasl_ir)
           my_setopt(curl, CURLOPT_SASL_IR, (long)TRUE);