From 59c2c2c7df958253cbfc51d39769f06c2f1246e4 Mon Sep 17 00:00:00 2001 From: Jeffrey Parker Date: Tue, 21 Jul 2026 14:58:39 -0400 Subject: [PATCH] Bump version to 1.3.0 All feature PRs for the 1.3.0 release are merged: - Disable CA pinning option (#51) - User-agent CA bundle/pinning status reporting (#52) - appendToUserAgent() method (#53) - CURLOPT_CAPATH OS fallback prevention (#54) --- src/Client.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Client.php b/src/Client.php index 658c85e..6304ed1 100644 --- a/src/Client.php +++ b/src/Client.php @@ -3,7 +3,7 @@ use DateTime; -const VERSION = "1.2.1-dev"; +const VERSION = "1.3.0"; const CA_BUNDLE_VERSION = "1.0"; const INITIAL_BACKOFF_SECONDS = 1; const MAX_BACKOFF_SECONDS = 32;