diff --git a/HISTORY.rst b/HISTORY.rst index e34d5da..0c06d47 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,11 +3,12 @@ History ------- -2.6.3 +2.6.3 (2025-01-09) ++++++++++++++++++ * The vendored ``libmaxminddb`` has been updated to 1.12.0. This fixes a memory leak when opening a database fails. +* Binary wheels are now built for Python 3.13. 2.6.2 (2024-06-10) ++++++++++++++++++ diff --git a/maxminddb/__init__.py b/maxminddb/__init__.py index f2156bf..2c61745 100644 --- a/maxminddb/__init__.py +++ b/maxminddb/__init__.py @@ -81,7 +81,7 @@ def open_database( __title__ = "maxminddb" -__version__ = "2.6.2" +__version__ = "2.6.3" __author__ = "Gregory Oschwald" __license__ = "Apache License, Version 2.0" __copyright__ = "Copyright 2013-2025 MaxMind, Inc." diff --git a/pyproject.toml b/pyproject.toml index cffa071..7377bdc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "maxminddb" -version = "2.6.2" +version = "2.6.3" description = "Reader for the MaxMind DB format" authors = [ {name = "Gregory Oschwald", email = "goschwald@maxmind.com"},