Skip to content

Commit 258593b

Browse files
authored
Merge pull request php-curl-class#377 from zachborboa/master
Bump minor version
2 parents 91b45f2 + 5877dd0 commit 258593b

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,7 @@ Curl::patch($url, $data = array())
203203
Curl::post($url, $data = array(), $follow_303_with_post = false)
204204
Curl::progress($callback)
205205
Curl::put($url, $data = array())
206+
Curl::search($url, $data = array())
206207
Curl::setBasicAuthentication($username, $password = '')
207208
Curl::setConnectTimeout($seconds)
208209
Curl::setCookie($key, $value)
@@ -242,6 +243,7 @@ MultiCurl::addOptions($url, $data = array())
242243
MultiCurl::addPatch($url, $data = array())
243244
MultiCurl::addPost($url, $data = array(), $follow_303_with_post = false)
244245
MultiCurl::addPut($url, $data = array())
246+
MultiCurl::addSearch($url, $data = array())
245247
MultiCurl::beforeSend($callback)
246248
MultiCurl::close()
247249
MultiCurl::complete($callback)

src/Curl/Curl.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
class Curl
77
{
8-
const VERSION = '5.0.0';
8+
const VERSION = '5.1.0';
99
const DEFAULT_TIMEOUT = 30;
1010

1111
public static $RFC2616 = array(

0 commit comments

Comments
 (0)