File tree 6 files changed +13
-7
lines changed
6 files changed +13
-7
lines changed Original file line number Diff line number Diff line change 3
3
History
4
4
-------
5
5
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)
7
13
++++++++++++++++++
8
14
9
15
* 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
2
2
recursive-include tests/ *.mmdb *.py *.raw
3
3
graft docs/html
Original file line number Diff line number Diff line change 53
53
54
54
# General information about the project.
55
55
project = "maxminddb"
56
- copyright = "2013-2020 , MaxMind, Inc."
56
+ copyright = "2013-2021 , MaxMind, Inc."
57
57
58
58
# The version info for the project you're documenting, acts as replacement for
59
59
# |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
35
35
* :ref: `modindex `
36
36
* :ref: `search `
37
37
38
- :copyright: (c) 2013-2020 by MaxMind, Inc.
38
+ :copyright: (c) 2013-2021 by MaxMind, Inc.
39
39
:license: Apache License, Version 2.0
40
40
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ def Reader(database): # pylint: disable=invalid-name
57
57
58
58
59
59
__title__ = "maxminddb"
60
- __version__ = "2.0.3 "
60
+ __version__ = "2.1.0 "
61
61
__author__ = "Gregory Oschwald"
62
62
__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:
331
331
return self .node_count * self .node_byte_size
332
332
333
333
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 ())
335
335
return f"{ self .__module__ } .{ self .__class__ .__name__ } ({ args } )"
You can’t perform that action at this time.
0 commit comments