Skip to content

Commit d987e59

Browse files
authored
Merge pull request #111 from maxmind/greg/2.3.0
2.3.0
2 parents 74ad4b3 + 7bad965 commit d987e59

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

HISTORY.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,14 @@
33
History
44
-------
55

6-
2.3.0
6+
2.3.0 (2023-05-09)
77
++++++++++++++++++
88

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

1315
2.2.0 (2021-09-24)
1416
++++++++++++++++++

dev-bin/release.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,9 @@ if [ "$should_push" != "y" ]; then
5353
exit 1
5454
fi
5555

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

5860
git push
5961

maxminddb/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def open_database(
8181

8282

8383
__title__ = "maxminddb"
84-
__version__ = "2.2.0"
84+
__version__ = "2.3.0"
8585
__author__ = "Gregory Oschwald"
8686
__license__ = "Apache License, Version 2.0"
8787
__copyright__ = "Copyright 2013-2021 MaxMind, Inc."

0 commit comments

Comments
 (0)