diff --git a/HISTORY.rst b/HISTORY.rst index 214b890..53d359c 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,7 +3,7 @@ History ------- -2.6.0 +2.6.0 (2024-03-19) ++++++++++++++++++ * Added type annotations for instance variables on ``Metadata`` diff --git a/docs/conf.py b/docs/conf.py index 763f509..57f27aa 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -53,7 +53,7 @@ # General information about the project. project = "maxminddb" -copyright = "2013-2023, MaxMind, Inc." +copyright = "2013-2024, MaxMind, Inc." # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the diff --git a/docs/index.rst b/docs/index.rst index 477be33..0d0b829 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -35,6 +35,6 @@ Indices and tables * :ref:`modindex` * :ref:`search` -:copyright: (c) 2013-2023 by MaxMind, Inc. +:copyright: (c) 2013-2024 by MaxMind, Inc. :license: Apache License, Version 2.0 diff --git a/maxminddb/__init__.py b/maxminddb/__init__.py index 62ffa62..032b60f 100644 --- a/maxminddb/__init__.py +++ b/maxminddb/__init__.py @@ -81,7 +81,7 @@ def open_database( __title__ = "maxminddb" -__version__ = "2.5.2" +__version__ = "2.6.0" __author__ = "Gregory Oschwald" __license__ = "Apache License, Version 2.0" -__copyright__ = "Copyright 2013-2023 MaxMind, Inc." +__copyright__ = "Copyright 2013-2024 MaxMind, Inc." diff --git a/pyproject.toml b/pyproject.toml index 7b11b81..5bdac31 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "maxminddb" -version = "2.5.2" +version = "2.6.0" description = "Reader for the MaxMind DB format" authors = [ {name = "Gregory Oschwald", email = "goschwald@maxmind.com"},