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 2.6.2 #165

Merged
merged 3 commits into from
Jun 10, 2024
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
7 changes: 7 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
History
-------

2.6.2 (2024-06-10)
++++++++++++++++++

* The vendored ``libmaxminddb`` has been updated to 1.10.0. This fixes a
bug that would cause incorrect results on databases that had search
trees greater than 4 GB.

2.6.1 (2024-04-12)
++++++++++++++++++

Expand Down
2 changes: 1 addition & 1 deletion maxminddb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def open_database(


__title__ = "maxminddb"
__version__ = "2.6.1"
__version__ = "2.6.2"
__author__ = "Gregory Oschwald"
__license__ = "Apache License, Version 2.0"
__copyright__ = "Copyright 2013-2024 MaxMind, Inc."
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "maxminddb"
version = "2.6.1"
version = "2.6.2"
description = "Reader for the MaxMind DB format"
authors = [
{name = "Gregory Oschwald", email = "[email protected]"},
Expand Down
Loading