From e31315d80ecba07484d4e4b78b0a4c52c0e9f4ef Mon Sep 17 00:00:00 2001 From: Pavlos Parissis Date: Sat, 19 Oct 2024 15:31:42 +0200 Subject: [PATCH] RELEASE 0.9.9 version --- AUTHORS | 3 +++ ChangeLog | 17 +++++++++++++++++ anycast_healthchecker/__init__.py | 2 +- 3 files changed, 21 insertions(+), 1 deletion(-) diff --git a/AUTHORS b/AUTHORS index b0fd23e..e036a77 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,7 +1,10 @@ Andras Temesvary Carlo Rengo +Corubba <97832352+corubba@users.noreply.github.com> +Daniel Hermann Greg Cox Jose Pedro Oliveira +José Pedro Oliveira Kostis Fardelas Maximilian Wilhelm Miro Hrončok diff --git a/ChangeLog b/ChangeLog index aaa60c7..64b3db2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,23 @@ CHANGES ======= +0.9.9 +----- + +* RELEASE 0.9.9 version +* Honor appropriately the value of ip\_check\_disabled (#51) +* Convert several .format strings to f-strings (#48) +* pylint workflow tweaks (#47) +* Sort imports (#46) +* Add prometheus-client to the requirements.txt file (#45) +* Run all checks with a signal (#44) +* Update pylint.yml +* Create pylint.yml github workflow +* Improve logging (#43) +* Fix default settings in README (#42) +* Update debian packaging (#41) +* Update README + 0.9.8 ----- diff --git a/anycast_healthchecker/__init__.py b/anycast_healthchecker/__init__.py index 164cd5d..89548c1 100644 --- a/anycast_healthchecker/__init__.py +++ b/anycast_healthchecker/__init__.py @@ -4,7 +4,7 @@ __title__ = 'anycast_healthchecker' __author__ = 'Pavlos Parissis' __license__ = 'Apache 2.0' -__version__ = '0.9.8' +__version__ = '0.9.9' __copyright__ = 'Copyright 2015-2023 Pavlos Parissis' PROGRAM_NAME = __title__.replace('_', '-')