Skip to content
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.5.2 (2024-01-09)
++++++++++++++++++

* The vendored ``libmaxminddb`` version was updated to 1.9.0. This fixes
an issue when reading databases with a search tree exceeding 2 GB.
Reported by Sami Salonen. GitHub #146.

2.5.1 (2023-11-09)
++++++++++++++++++

Expand Down
2 changes: 0 additions & 2 deletions dev-bin/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

set -eu -o pipefail

pip install twine sphinx

changelog=$(cat HISTORY.rst)

regex='
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.5.1"
__version__ = "2.5.2"
__author__ = "Gregory Oschwald"
__license__ = "Apache License, Version 2.0"
__copyright__ = "Copyright 2013-2023 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.5.1"
version = "2.5.2"
description = "Reader for the MaxMind DB format"
authors = [
{name = "Gregory Oschwald", email = "goschwald@maxmind.com"},
Expand Down