From 09e4d048723271c37bae2ade6ed35317748046bb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 13 Jan 2023 12:29:36 +0000 Subject: [PATCH] =?UTF-8?q?Bump=20version:=209.12.6=20=E2=86=92=209.13.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 6 ++++++ src/Curl/Curl.php | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d9352ef..f6c006c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ backwards-incompatible changes that will affect existing usage. +## 9.13.0 - 2023-01-13 + +- Implement abstract class BaseCurl for Curl and MultiCurl ([#759](https://github.com/php-curl-class/php-curl-class/pull/759)) +- Display error messages found in Curl::diagnose() ([#758](https://github.com/php-curl-class/php-curl-class/pull/758)) +- Fix Curl::diagnose() request type output for POST requests ([#757](https://github.com/php-curl-class/php-curl-class/pull/757)) + ## 9.12.6 - 2023-01-11 - Replace use of #[\AllowDynamicProperties] ([#756](https://github.com/php-curl-class/php-curl-class/pull/756)) diff --git a/src/Curl/Curl.php b/src/Curl/Curl.php index bc7703d..b41ec06 100644 --- a/src/Curl/Curl.php +++ b/src/Curl/Curl.php @@ -8,7 +8,7 @@ use Curl\Url; class Curl extends BaseCurl { - const VERSION = '9.12.6'; + const VERSION = '9.13.0'; const DEFAULT_TIMEOUT = 30; public $curl = null;