From c41efeb4ea2dc3cf8f90f8f967b0fcf45a41e294 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 9 Apr 2024 18:03:13 +0000 Subject: [PATCH] =?UTF-8?q?Bump=20version:=209.19.1=20=E2=86=92=209.19.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 4 ++++ src/Curl/Curl.php | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eaa891d..5e2e43f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ backwards-incompatible changes that will affect existing usage. +## 9.19.2 - 2024-04-09 + +- Fix CI: Use nullable type declaration ([#859](https://github.com/php-curl-class/php-curl-class/pull/859)) + ## 9.19.1 - 2024-02-27 - Fix afterSend not being called ([#848](https://github.com/php-curl-class/php-curl-class/pull/848)) diff --git a/src/Curl/Curl.php b/src/Curl/Curl.php index 44dda0c..04cbcd9 100644 --- a/src/Curl/Curl.php +++ b/src/Curl/Curl.php @@ -6,7 +6,7 @@ namespace Curl; class Curl extends BaseCurl { - const VERSION = '9.19.1'; + const VERSION = '9.19.2'; const DEFAULT_TIMEOUT = 30; public $curl = null;