File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 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
13152.2.0 (2021-09-24)
1416++++++++++++++++++
Original file line number Diff line number Diff line change @@ -53,7 +53,9 @@ if [ "$should_push" != "y" ]; then
5353 exit 1
5454fi
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
5860git push
5961
Original file line number Diff line number Diff 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."
You can’t perform that action at this time.
0 commit comments