File tree Expand file tree Collapse file tree 6 files changed +13
-7
lines changed
Expand file tree Collapse file tree 6 files changed +13
-7
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1- include HISTORY.rst README.rst LICENSE
1+ include HISTORY.rst README.rst LICENSE maxminddb/py.typed maxminddb/extension.pyi
22recursive-include tests/ *.mmdb *.py *.raw
33graft docs/html
Original file line number Diff line number Diff line change 5353
5454# General information about the project.
5555project = "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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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."
Original file line number Diff line number Diff 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 } )"
You can’t perform that action at this time.
0 commit comments