Skip to content

Commit ee8485a

Browse files
authored
Merge pull request #86 from maxmind/greg/2.1.0
2.1.0 release
2 parents c631155 + 9d051cc commit ee8485a

File tree

6 files changed

+13
-7
lines changed

6 files changed

+13
-7
lines changed

HISTORY.rst

+7-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,13 @@
33
History
44
-------
55

6-
2.1.0
6+
2.1.1
7+
++++++++++++++++++
8+
9+
* Fix minor regression in ``repr`` output of ``maxminddb.reader.Metadata``
10+
in 2.1.0.
11+
12+
2.1.0 (2021-09-18)
713
++++++++++++++++++
814

915
* The C extension now correctly supports objects that implement the

MANIFEST.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
include HISTORY.rst README.rst LICENSE
1+
include HISTORY.rst README.rst LICENSE maxminddb/py.typed maxminddb/extension.pyi
22
recursive-include tests/ *.mmdb *.py *.raw
33
graft docs/html

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353

5454
# General information about the project.
5555
project = "maxminddb"
56-
copyright = "2013-2020, MaxMind, Inc."
56+
copyright = "2013-2021, MaxMind, Inc."
5757

5858
# The version info for the project you're documenting, acts as replacement for
5959
# |version| and |release|, also used in various other places throughout the

docs/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ Indices and tables
3535
* :ref:`modindex`
3636
* :ref:`search`
3737

38-
:copyright: (c) 2013-2020 by MaxMind, Inc.
38+
:copyright: (c) 2013-2021 by MaxMind, Inc.
3939
:license: Apache License, Version 2.0
4040

maxminddb/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def Reader(database): # pylint: disable=invalid-name
5757

5858

5959
__title__ = "maxminddb"
60-
__version__ = "2.0.3"
60+
__version__ = "2.1.0"
6161
__author__ = "Gregory Oschwald"
6262
__license__ = "Apache License, Version 2.0"
63-
__copyright__ = "Copyright 2013-2020 MaxMind, Inc."
63+
__copyright__ = "Copyright 2013-2021 MaxMind, Inc."

maxminddb/reader.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -331,5 +331,5 @@ def search_tree_size(self) -> int:
331331
return self.node_count * self.node_byte_size
332332

333333
def __repr__(self):
334-
args = ", ".join(f"{k}={v}" for k, v in self.__dict__.items())
334+
args = ", ".join(f"{k}={v!r}" for k, v in self.__dict__.items())
335335
return f"{self.__module__}.{self.__class__.__name__}({args})"

0 commit comments

Comments
 (0)