Skip to content

Release 5.1.0 #203

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

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
History
-------

5.1.0
5.1.0 (2025-05-05)
++++++++++++++++++

* Support for the GeoIP Anonymous Plus database has been added. To do a lookup
in this database, use the ``anonymous_plus`` method on ``Reader``.

* Reorganized module documentation to improve language-server support.

5.0.1 (2025-01-28)
++++++++++++++++++
Expand Down
2 changes: 1 addition & 1 deletion geoip2/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# pylint:disable=C0111

__title__ = "geoip2"
__version__ = "5.0.1"
__version__ = "5.1.0"
__author__ = "Gregory Oschwald"
__license__ = "Apache License, Version 2.0"
__copyright__ = "Copyright (c) 2013-2025 MaxMind, Inc."
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[project]
name = "geoip2"
version = "5.0.1"
version = "5.1.0"
description = "MaxMind GeoIP2 API"
authors = [
{name = "Gregory Oschwald", email = "[email protected]"},
]
dependencies = [
"aiohttp>=3.6.2,<4.0.0",
"maxminddb>=2.5.1,<3.0.0",
"maxminddb>=2.7.0,<3.0.0",
"requests>=2.24.0,<3.0.0",
]
requires-python = ">=3.9"
Expand Down
Loading
Loading