diff --git a/CHANGELOG.md b/CHANGELOG.md index 24f935c0..9085b664 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) ------------------ diff --git a/composer.json b/composer.json index aafb2b1c..afeaebc7 100644 --- a/composer.json +++ b/composer.json @@ -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": { diff --git a/src/MinFraud.php b/src/MinFraud.php index 5cfcc0b9..0781c39e 100644 --- a/src/MinFraud.php +++ b/src/MinFraud.php @@ -39,7 +39,7 @@ */ class MinFraud { - const VERSION = 'v0.6.0'; + const VERSION = 'v0.6.1'; private $client; private static $host = 'minfraud.maxmind.com'; diff --git a/tests/MaxMind/Test/MinFraudTest.php b/tests/MaxMind/Test/MinFraudTest.php index d9810d0e..1520d30f 100644 --- a/tests/MaxMind/Test/MinFraudTest.php +++ b/tests/MaxMind/Test/MinFraudTest.php @@ -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, ] )