diff --git a/HISTORY.rst b/HISTORY.rst index 771e8b5..ac9b46e 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,7 +3,7 @@ History ------- -0.4.0 (2016-XX-XX) +0.4.0 (2016-05-23) ++++++++++++++++++ * Added support for the minFraud Factors. diff --git a/minfraud/models.py b/minfraud/models.py index fdc4bda..d170947 100644 --- a/minfraud/models.py +++ b/minfraud/models.py @@ -552,16 +552,16 @@ class Subscores(object): .. attribute:: billing_address_distance_to_ip_location The risk associated with the distance between the billing address and - the IP location for the given IP address. If present, this is a value - in the range 0.01 to 99. + the location for the given IP address. If present, this is a value in + the range 0.01 to 99. :type: float | None .. attribute:: browser The risk associated with the browser attributes such as the User-Agent - and Accept-Language AVS result. If present, this is a value - in the range 0.01 to 99. + and Accept-Language. If present, this is a value in the range 0.01 to + 99. :type: float | None @@ -648,9 +648,9 @@ class Subscores(object): .. attribute:: shipping_address_distance_to_ip_location - The risk associated with the distance between the billing address and - the IP location for the given IP address. If present, this is a value - in the range 0.01 to 99. + The risk associated with the distance between the shipping address and + the location for the given IP address. If present, this is a value in + the range 0.01 to 99. :type: float | None diff --git a/minfraud/version.py b/minfraud/version.py index 8343b79..001735c 100644 --- a/minfraud/version.py +++ b/minfraud/version.py @@ -1,2 +1,2 @@ """Internal module for version (to prevent cyclic imports)""" -__version__ = '0.3.0' +__version__ = '0.4.0'