Skip to content

Commit

Permalink
Prepare for 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
oschwald committed Jun 10, 2016
1 parent 2aec291 commit 5d4b058
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
CHANGELOG
=========

0.6.1 (2016-06-10)
------------------

* Upgraded to `maxmind/web-service-common` that supports setting a HTTP proxy.

0.6.0 (2016-06-08)
------------------

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
"require": {
"php": ">=5.4",
"ext-json": "*",
"geoip2/geoip2": "~2.3",
"maxmind/web-service-common": "~0.0.4",
"geoip2/geoip2": "~2.4",
"maxmind/web-service-common": "~0.2.0",
"respect/validation": "~1.0"
},
"require-dev": {
Expand Down
2 changes: 1 addition & 1 deletion src/MinFraud.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
*/
class MinFraud
{
const VERSION = 'v0.6.0';
const VERSION = 'v0.6.1';

private $client;
private static $host = 'minfraud.maxmind.com';
Expand Down
2 changes: 2 additions & 0 deletions tests/MaxMind/Test/MinFraudTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -695,6 +695,8 @@ private function createMinFraudRequest(
? $options['connectTimeout'] : null,
'timeout' => isset($options['timeout'])
? $options['timeout'] : null,
'proxy' => isset($options['proxy'])
? $options['proxy'] : null,
'caBundle' => $caBundle,
]
)
Expand Down

0 comments on commit 5d4b058

Please sign in to comment.