Skip to content
Merged

2.3.0 #111

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: 3 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@
History
-------

2.3.0
2.3.0 (2023-05-09)
++++++++++++++++++

* IMPORTANT: Python 3.7 or greater is required. If you are using an older
version, please use an earlier release.
* ``distutils`` is no longer used for building the C extension.
* Missing ``Py_INCREF`` was added to module initialization for the C
extension. Pull request by R. Christian McDonald. GitHub #106.

2.2.0 (2021-09-24)
++++++++++++++++++
Expand Down
4 changes: 3 additions & 1 deletion dev-bin/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ if [ "$should_push" != "y" ]; then
exit 1
fi

git commit -m "Update for $tag" -a
if [ -n "$(git status --porcelain)" ]; then
git commit -m "Update for $tag" -a
fi

git push

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.2.0"
__version__ = "2.3.0"
__author__ = "Gregory Oschwald"
__license__ = "Apache License, Version 2.0"
__copyright__ = "Copyright 2013-2021 MaxMind, Inc."