From d1cc0b1e1248d0eea11c25631b23efa671b829a2 Mon Sep 17 00:00:00 2001 From: Constantine Nathanson Date: Wed, 6 Dec 2023 17:30:30 +0200 Subject: [PATCH] Version 1.24.0 --- CHANGELOG.md | 15 +++++++++++++++ CloudinaryDotNet/CloudinaryDotNet.csproj | 2 +- CloudinaryDotNet/CloudinaryVersion.cs | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 500ab424..52a8654c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,19 @@ +1.24.0 / 2023-12-06 +============= + +New functionality +----------------- + + * Add support for `Fields` parameter in Search and Admin APIs + * Add `AccountProvisioning` constructors + * Add support for access keys management in Account Provisioning API + +Other Changes +------------- + + * Fix SearchApi tests on some environments + 1.23.0 / 2023-11-06 ============= diff --git a/CloudinaryDotNet/CloudinaryDotNet.csproj b/CloudinaryDotNet/CloudinaryDotNet.csproj index f946674b..ec0fcb03 100644 --- a/CloudinaryDotNet/CloudinaryDotNet.csproj +++ b/CloudinaryDotNet/CloudinaryDotNet.csproj @@ -9,7 +9,7 @@ false CloudinaryDotNet Cloudinary - 1.23.0 + 1.24.0 false Official client library for easily integrating with the Cloudinary service Image Video Responsive Web Utility CDN Performance Resize Crop Rotate Quality Watermark Gif Jpg Jpeg Bitmap PNG Tiff Webp Webm mp4 avi Filter Effect diff --git a/CloudinaryDotNet/CloudinaryVersion.cs b/CloudinaryDotNet/CloudinaryVersion.cs index 432458de..51bb0e8a 100644 --- a/CloudinaryDotNet/CloudinaryVersion.cs +++ b/CloudinaryDotNet/CloudinaryVersion.cs @@ -8,6 +8,6 @@ internal static class CloudinaryVersion /// /// Gets full version number of Cloudinary .NET SDK. /// - public static string Full => "1.23.0"; + public static string Full => "1.24.0"; } }