Skip to content

Commit

Permalink
bump version to 0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
beheh committed Jun 5, 2014
1 parent 08252bb commit f958d9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ResponseFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class ResponseFactory {
public static function fromUrl($url) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_USERAGENT, __NAMESPACE__.'/1.0');
curl_setopt($ch, CURLOPT_USERAGENT, __NAMESPACE__.'/0.1.5');
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$string = curl_exec($ch);
Expand Down

0 comments on commit f958d9f

Please sign in to comment.