Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 3.12 #128

Merged
merged 2 commits into from
Dec 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,15 @@
History
-------

2.9.0
2.9.0 (2023-12-05)
++++++++++++++++++

* IMPORTANT: Python 3.8 or greater is required. If you are using an older
version, please use an earlier release.
* Updated ``geoip2`` to version that includes the ``is_anycast`` attribute on
``geoip2.record.Traits``. This property is ``True`` if the IP address
belongs to an `anycast network <https://en.wikipedia.org/wiki/Anycast>`_.
This is available in minFraud Insights and Factors.

2.8.0 (2023-05-09)
++++++++++++++++++
Expand Down
2 changes: 1 addition & 1 deletion minfraud/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Internal module for version (to prevent cyclic imports)"""
__version__ = "2.8.0"
__version__ = "2.9.0"
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "minfraud"
version = "2.8.0"
version = "2.9.0"
description = "MaxMind minFraud Score, Insights, Factors and Report Transactions API"
authors = [
{name = "Gregory Oschwald", email = "goschwald@maxmind.com"},
Expand All @@ -9,7 +9,7 @@ dependencies = [
"setuptools>=60.0.0",
"aiohttp>=3.6.2,<4.0.0",
"email_validator>=2.0.0,<3.0.0",
"geoip2>=4.7.0,<5.0.0",
"geoip2>=4.8.0,<5.0.0",
"requests>=2.24.0,<3.0.0",
"voluptuous",
]
Expand Down
Loading