diff --git a/HISTORY.rst b/HISTORY.rst index 26e95ad1..325a58dd 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,8 +4,8 @@ History ------- -4.8.1 -+++++++++++++++++++ +4.8.1 (2024-11-18) +++++++++++++++++++ * ``setuptools`` was incorrectly listed as a runtime dependency. This has been removed. Pull request by Mathieu Dupuy. GitHub #174. diff --git a/docs/conf.py b/docs/conf.py index 3782dd8b..3989a982 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -49,7 +49,7 @@ # General information about the project. project = "geoip2" -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 176e5dcf..1233f202 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -38,6 +38,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/geoip2/__init__.py b/geoip2/__init__.py index 2a4fd8f3..7d1a8ad6 100644 --- a/geoip2/__init__.py +++ b/geoip2/__init__.py @@ -1,7 +1,7 @@ # pylint:disable=C0111 __title__ = "geoip2" -__version__ = "4.8.0" +__version__ = "4.8.1" __author__ = "Gregory Oschwald" __license__ = "Apache License, Version 2.0" -__copyright__ = "Copyright (c) 2013-2023 MaxMind, Inc." +__copyright__ = "Copyright (c) 2013-2024 MaxMind, Inc." diff --git a/pyproject.toml b/pyproject.toml index 1cf4d39f..04a27d01 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "geoip2" -version = "4.8.0" +version = "4.8.1" description = "MaxMind GeoIP2 API" authors = [ {name = "Gregory Oschwald", email = "goschwald@maxmind.com"},