diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a77e2ae..559e0306 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,9 @@ +1.26.1 / 2024-03-14 +=================== + + * Fix `UploadLarge` breaking large files on upload + 1.26.0 / 2024-02-26 ============= diff --git a/CloudinaryDotNet/CloudinaryDotNet.csproj b/CloudinaryDotNet/CloudinaryDotNet.csproj index 19e20a6d..ba481eaa 100644 --- a/CloudinaryDotNet/CloudinaryDotNet.csproj +++ b/CloudinaryDotNet/CloudinaryDotNet.csproj @@ -10,7 +10,7 @@ false CloudinaryDotNet Cloudinary - 1.26.0 + 1.26.1 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 d1d3a658..7c6306a9 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.26.0"; + public static string Full => "1.26.1"; } }