From be1bd2a4f858a5b6d7e3f699ecb5bd5a36834197 Mon Sep 17 00:00:00 2001 From: Gregory Oschwald Date: Mon, 10 Jun 2024 10:30:02 -0700 Subject: [PATCH 1/3] Update submodule --- HISTORY.rst | 7 +++++++ extension/libmaxminddb | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index bf062c6..e760bcd 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -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 result in incorrect results on databases that had search + trees greater than 4 GB. + 2.6.1 (2024-04-12) ++++++++++++++++++ diff --git a/extension/libmaxminddb b/extension/libmaxminddb index c796899..7acfe43 160000 --- a/extension/libmaxminddb +++ b/extension/libmaxminddb @@ -1 +1 @@ -Subproject commit c796899e8faae25d561904cf44f1d4d3118a55e5 +Subproject commit 7acfe43a72a5043d01cc3dd6429005acdf812cb3 From 348741bb332ec6c824dd422873bce33059ebcb3f Mon Sep 17 00:00:00 2001 From: Gregory Oschwald Date: Mon, 10 Jun 2024 10:35:36 -0700 Subject: [PATCH 2/3] Update for v2.6.2 --- maxminddb/__init__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/maxminddb/__init__.py b/maxminddb/__init__.py index fac1d80..bc526cb 100644 --- a/maxminddb/__init__.py +++ b/maxminddb/__init__.py @@ -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." diff --git a/pyproject.toml b/pyproject.toml index 4428c8d..6bf9d6c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 = "goschwald@maxmind.com"}, From f29c95c5009a13e4611d6b92e6f39425beec8c01 Mon Sep 17 00:00:00 2001 From: Gregory Oschwald Date: Mon, 10 Jun 2024 10:36:56 -0700 Subject: [PATCH 3/3] Tweak wording --- HISTORY.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index e760bcd..3524d2c 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -7,7 +7,7 @@ History ++++++++++++++++++ * The vendored ``libmaxminddb`` has been updated to 1.10.0. This fixes a - bug that would result in incorrect results on databases that had search + bug that would cause incorrect results on databases that had search trees greater than 4 GB. 2.6.1 (2024-04-12)