From 1e1df6ae55bacf41c927a1bede17a1d7dd866d8b Mon Sep 17 00:00:00 2001 From: Gregory Oschwald Date: Mon, 18 Nov 2024 09:21:52 -0800 Subject: [PATCH 1/3] Set release date --- HISTORY.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 26e95ad..325a58d 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. From f5fdd64c232a36a448b3f8f29b12fa78997ba4fe Mon Sep 17 00:00:00 2001 From: Gregory Oschwald Date: Mon, 18 Nov 2024 09:22:37 -0800 Subject: [PATCH 2/3] Update copyright year --- docs/conf.py | 2 +- docs/index.rst | 2 +- geoip2/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 3782dd8..3989a98 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 176e5dc..1233f20 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 2a4fd8f..5540221 100644 --- a/geoip2/__init__.py +++ b/geoip2/__init__.py @@ -4,4 +4,4 @@ __version__ = "4.8.0" __author__ = "Gregory Oschwald" __license__ = "Apache License, Version 2.0" -__copyright__ = "Copyright (c) 2013-2023 MaxMind, Inc." +__copyright__ = "Copyright (c) 2013-2024 MaxMind, Inc." From 5df17ce915543f7413a70bc636bfa599196ce097 Mon Sep 17 00:00:00 2001 From: Gregory Oschwald Date: Mon, 18 Nov 2024 09:30:25 -0800 Subject: [PATCH 3/3] Update for v4.8.1 --- geoip2/__init__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/geoip2/__init__.py b/geoip2/__init__.py index 5540221..7d1a8ad 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-2024 MaxMind, Inc." diff --git a/pyproject.toml b/pyproject.toml index 1cf4d39..04a27d0 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"},