From c3a909ef33a35c47b9e3db7347201c67c8be9cc3 Mon Sep 17 00:00:00 2001 From: Hamish Meikle Date: Wed, 2 Apr 2025 11:25:00 +1100 Subject: [PATCH 1/4] remove version from user-agent header --- authsignal/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authsignal/client.py b/authsignal/client.py index 4c1571d..00032b9 100644 --- a/authsignal/client.py +++ b/authsignal/client.py @@ -43,7 +43,7 @@ def __init__(self, timeout, api_key): { "Content-Type": "application/json", "Accept": "*/*", - "User-Agent": "authsignal-python-sdk/" + VERSION, + "User-Agent": "Authsignal Python", "X-Authsignal-Version": VERSION, } ) From 3491dd1debf96b822faa7e70293b33b9856ac27a Mon Sep 17 00:00:00 2001 From: Hamish Meikle Date: Wed, 2 Apr 2025 11:26:06 +1100 Subject: [PATCH 2/4] bump version --- authsignal/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authsignal/version.py b/authsignal/version.py index 73f980c..773464b 100644 --- a/authsignal/version.py +++ b/authsignal/version.py @@ -1 +1 @@ -VERSION = "4.1.0" +VERSION = "4.2.0" From 39ac1f2618428ea859618e61776d8d3d3dd053e2 Mon Sep 17 00:00:00 2001 From: Hamish Meikle Date: Wed, 2 Apr 2025 11:35:16 +1100 Subject: [PATCH 3/4] patch version --- authsignal/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authsignal/version.py b/authsignal/version.py index 773464b..8c8f595 100644 --- a/authsignal/version.py +++ b/authsignal/version.py @@ -1 +1 @@ -VERSION = "4.2.0" +VERSION = "4.1.1" From 0feda161dbc6203e0dc033ece6ef5b0facfe9f9b Mon Sep 17 00:00:00 2001 From: Hamish Meikle Date: Wed, 2 Apr 2025 11:43:28 +1100 Subject: [PATCH 4/4] use kebab case --- authsignal/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authsignal/client.py b/authsignal/client.py index 00032b9..238d441 100644 --- a/authsignal/client.py +++ b/authsignal/client.py @@ -43,7 +43,7 @@ def __init__(self, timeout, api_key): { "Content-Type": "application/json", "Accept": "*/*", - "User-Agent": "Authsignal Python", + "User-Agent": "authsignal-python", "X-Authsignal-Version": VERSION, } )